diff --git a/social/email/locales/en-US/61-email.html b/social/email/locales/en-US/61-email.html
index 42341059..fbd90e63 100644
--- a/social/email/locales/en-US/61-email.html
+++ b/social/email/locales/en-US/61-email.html
@@ -42,6 +42,7 @@
Module Used
The e-mail in node uses the node-imap module, see that page for information on the msg.criteria
format if needed.
+ It also makes use of node-pop3 module
Attachment Format
Each object in the msg.attachments
array is formatted as follows:
@@ -59,8 +60,8 @@
// We can turn this into a base64 data string with content.toString('base64')
}
- IMAP Authentication
- When connecting to an IMAP server, two authentication types are available: Basic and XOAuth2.
+ Authentication
+ When connecting to a POP3 or IMAP server, two authentication types are available: Basic and XOAuth2.
- Basic: requires a username and password to be entered
- XOAuth2: requires a username and a
msg
property to extract the access token
@@ -76,7 +77,6 @@
- For POP3, the default port numbers are 110 for plain TCP and 995 for SSL. For IMAP the port numbers are 143 for plain TCP and 993 for SSL.
- With option 'STARTTLS' an established plain connection is upgraded to an encrypted one. Set to 'always' to always attempt connection upgrades via STARTTLS, 'required' only if upgrading is required, or 'never' to never attempt upgrading.
- The maximum refresh interval is 2147483 seconds (24.8 days).
- - POP XOAuth2 will be supported in future
diff --git a/social/email/package.json b/social/email/package.json
index fe1d19e0..099b514a 100644
--- a/social/email/package.json
+++ b/social/email/package.json
@@ -1,6 +1,6 @@
{
"name": "node-red-node-email",
- "version": "1.19.0-beta+xoauth2.imap",
+ "version": "1.19.0-beta+xoauth2",
"description": "Node-RED nodes to send and receive simple emails.",
"dependencies": {
"imap": "^0.8.19",