8

我家里有一台带有静态 IP 的服务器,我用一个域为自己的网页提供服务,一切正常。

在我的网页中,您可以通过电子邮件和密码注册。当您注册一个名为 nodemailer 的节点模块,从 google 帐户发送电子邮件时,问题是 google 帐户对发送的电子邮件有限制。

所以我需要将 nodemailer 模块连接到我自己家中的服务器。

我在谷歌上搜索,但没有类似的答案。

如何在 nodejs 中使用后缀?

http://www.postfix.org/

或者如何在 nodemailer 中使用 haraka 模块

https://github.com/baudehlo/Haraka

所以我重复我的问题,我需要从我的服务器发送一封电子邮件给在我的网站上注册的任何电子邮件用户。

例如...

用户 jose@gmail.com 在我的网站上注册

nodemailer配置是...

exports.newRegistration=function(parametros,callback)
{
    var mailOptions = 
    {
        from: "<myemailingoogle@gmail.com>",//my email
        to: parametros.useremail,//user email
        subject: 'Welcome '+parametros.useremail+'.',
        html:   '<br><b>Hello</b><br>'+ // html 

    };
    var smtpTransport = nodemailer.createTransport("SMTP",
    {
        service: "Gmail",
        secureConnection: true,
        auth:
        {
            user: "myemailingoogle@gmail.com",
            pass: "7ftera359c28a",
        },
    });
    smtpTransport.sendMail(mailOptions, function(err, response)
    {
        if(err)
        {
            smtpTransport.close();
            console.warn(err);
            return callback(err,null);
        }else{
            smtpTransport.close();
            return callback(null,response);
        }
    });
}

电子邮件发送正常,但每天有限制。

所以我需要使用电子邮件服务器无限制地发送我的电子邮件.... tnx

编辑 2

我用 apt-get 安装 mailutils

现在我试试

mail mymailin@gmail.com
Cc: // press enter
Subject: Welcome

Hello Mail.

// Ctrl+D

这会将电子邮件发送到我的邮箱,我在垃圾邮件中收到一封从 root@mail.mydomain.com 发送的电子邮件

所以,后缀正在工作,但我仍然无法使用 emailjs 或 nodemailer 发送电子邮件......

当我尝试使用电子邮件或 nodemailer 发送电子邮件时,我得到了这个

smtp: '535 5.7.8 Error: authentication failed: generic failure\n'

我在谷歌搜索该错误并且是和身份验证登录错误,我无法登录系统。所以我尝试使用 telnet

telnet localhost 25
ehlo localhost
250-mydomain.com
250-PIPELINING
250-SIZE 10240000
250-VRFY
250-ETRN
250-STARTTLS
250-AUTH PLAIN LOGIN
250-AUTH=PLAIN LOGIN
250-ENHANCEDSTATUSCODES
250-8BITMIME
250 DSN
mail to: myuserin@gmail.com
501 5.5.4 Syntax: MAIL FROM:<address>
mail from: info@mydomain.com
250 2.1.0 Ok
rcpt to: myuserin@gmail.com
451 4.3.0 <myuserin@gmail.com>: Temporary lookup failure
data
554 5.5.1 Error: no valid recipients
AUTH LOGIN
503 5.5.1 Error: MAIL transaction in progress

我再试试

220 mydomain.com ESMTP Postfix (Ubuntu)
ehlo localhost
250-mydomain.com
250-PIPELINING
250-SIZE 10240000
250-VRFY
250-ETRN
250-STARTTLS
250-AUTH PLAIN LOGIN
250-AUTH=PLAIN LOGIN
250-ENHANCEDSTATUSCODES
250-8BITMIME
250 DSN
AUTH LOGIN
334 VXNlcm5hbWU6
UbuntuUser
535 5.7.8 Error: authentication failed: another step is needed in authentication

并再次与根

220 mydomain.com ESMTP Postfix (Ubuntu)
ehlo localhost
250-mydomain.com
250-PIPELINING
250-SIZE 10240000
250-VRFY
250-ETRN
250-STARTTLS
250-AUTH PLAIN LOGIN
250-AUTH=PLAIN LOGIN
250-ENHANCEDSTATUSCODES
250-8BITMIME
250 DSN
auth login
334 VXNlcm5hbWU6
root
334 UGFzc3dvcmQ6
rootPassword
535 5.7.8 Error: authentication failed: another step is needed in authentication

这是日志文件

Jun 20 15:50:16 myname postfix/smtpd[12528]: warning: localhost[127.0.0.1]:             SASL login authentication failed: another step is needed in authentication

就是这样……问题出在哪里???

4

2 回答 2

7

我也必须这样做,但我在 Azure 虚拟 Ubuntu Linux 服务器上运行我的节点服务器。我想如果你运行的是 Ubuntu,同样的步骤也可以在你的家庭服务器上运行。这是我发现的工作:

我使用本指南安装了 postfix 电子邮件服务器:

https://help.ubuntu.com/community/Postfix

起初它看起来像很多工作,但它对我来说很容易。

我发现从 node.js 发送传出电子邮件的最简单方法是使用 emailjs:

http://github.com/eleith/emailjs.git

我发现发送的电子邮件通常最终被标记为垃圾邮件。为避免这种情况,您可以前往管理域名的任何地方(我使用 enom),然后配置 SPF 记录以帮助您发送的电子邮件看起来合法。

这是我使用 emailjs 发送电子邮件的 node.js 模块:

    var email   = require("emailjs");

    postfixSend = function postfixSend(emailInfo, callback) {

        var server  = email.server.connect({
            user:    "yourEmailAccountUser", 
            password: "yourPassword", 
            host:    "localhost", 
            ssl:     false
        });

        server.send({
            text:    emailInfo.msg, 
            from:    emailInfo.from, 
            to:      emailInfo.to,
            subject: emailInfo.subject
            }, function(err, message) {
                callback(err);
        });

    }

    exports.postfixSend = postfixSend;
于 2013-06-20T11:42:33.247 回答
1

我用这个解决问题...

使用后缀的文章

我在 sasldb2 中添加了一些用户,并且 emailjs 运行良好。

首先使用Svbaker 教程安装后缀,但是,

编辑 /etc/postfix/sasl/smtpd.conf 添加以下行:

pwcheck_method: auxprop
auxprop_plugin: sasldb 
mech_list: PLAIN LOGIN

感谢您的所有帮助,特别是@Svbaker,并为您提供解决此问题的方法。

于 2013-06-20T20:20:38.863 回答