gpt4 book ai didi

node.js - Haraka 未授权我的身份验证

转载 作者:搜寻专家 更新时间:2023-11-01 00:25:53 25 4
gpt4 key购买 nike

我正在 Haraka 中构建一个需要 tls 认证的应用程序。我使用命令生成了 .pem 文件 tls_cert.pem 和 tls_key.pem

openssl req -x509 -nodes -days 2190 -newkey rsa:1024 -keyout config/tls_key.pem -out config/tls_cert.pem

像 Haraka 建议的那样,确保 Common Name 字段的内容与我的 config/me 文件的内容相同。在我的配置/插件中我有

# default list of plugins

# Log to syslog (disabled by default, see docs)
#log.syslog

# block mails from known bad hosts (see config/dnsbl.zones for the DNS zones queried)
#dnsbl

# Check mail headers are valid
data.rfc5322_header_checks

# block mail from some known bad HELOs - see config/helo.checks.ini for configuration
#helo.checks

# control which "MAIL FROM" addresses you accept. See docs.
#mail_from.access

# Only accept mail where the MAIL FROM domain is resolvable to an MX record
#mail_from.is_resolvable

# Disconnect client if they spew bad SMTP commands at us
#max_unrecognized_commands

# control which "RCPT TO" addresses you reject. See docs.
#rcpt_to.access

# Only accept mail for your personal list of hosts. Edit config/host_list
# NOTE: THIS IS REQUIRED for inbound email.
rcpt_to.in_host_list

# Queue mail via smtp - see config/smtp_forward.ini for where your mail goes
#queue/smtp_forward

##### Custom Plugins ####
javascript/fooBar
tls

javascript/fooBar 是一个自定义插件,我用 coffeescript 编写并编译成一个 js 文件,这意味着它映射到 plugins/javascript/Mx25OutBoundActions.js

这里是plugins/javascript/fooBar.js的内容

(function() {
var DataBase, Password, User, database;

DataBase = require('./dataBase');

database = new DataBase();

User = null;

Password = null;

exports.hook_lookup_rdns = function(next, conn) {
return next(OK, '');
};

exports.hook_connect = function(next, conn, params) {
conn.remote_host = '';
return next(CONT, "The MX25 SMTP API is now ready.");
};

exports.register = function() {
this.loginfo('Test');
return this.inherits('auth/auth_base');
};

exports.hook_capablities = function(next, conn) {
var methods;
this.loginfo('Hello');
conn.capabilities.push('STARTTLS');
conn.notes.tls_enabled = 1;
if (conn.using_tls) {
this.loginfo('Connection Secure');
methods = ['PLAIN', 'LOGIN'];
conn.capabilities.push("AUTH " + (methods.join(' ')));
conn.notes.allowed_auth_methods = methods;
return next();
} else {
this.loginfo('Connection not secure');
return next(DENY, '5.7.1 Secure connection required');
}
};
exports.get_plain_passwd = function(user, cb) {
this.loginfo('*********');
this.loginfo(user);
this.loginfo('*********');
return cb(user);
};

exports.check_plain_passwd = function(conn, user, passwd, cb) {
this.loginfo("Hello!");
database.query('SELECT * FROM domains', function(error, results) {
var Password, User, flag, i, _i, _ref;
if (error == null) {
flag = 0;
for (i = _i = 0, _ref = results.length; 0 <= _ref ? _i <= _ref : _i >= _ref; i = 0 <= _ref ? ++_i : --_i) {
if (user === results[i].address && passwd === results[i].outbound_password) {
flag = 1;
break;
}
}
if (flag === 1) {
User = user;
Password = passwd;
return cb(true);
} else {
console.log('User not authenticated');
return next(DENY, '5.7.1 Invalid authentication credentials provided');
}
} else {
console.log("Error: ${error}.");
}
});
return cb(true);
};
});.call(this);

我在运行时遇到了问题。 Haraka 启动得很好,但是当我运行命令时

swaks -f test@test.com -t myemail@gmail.com -s localhost -p 587 -au testname -ap t3$tPassword

在另一个委员会中,我从 swaks 那里得到一个错误的说法

*** Host did not advertise authentication

Haraka 的输出看起来像

[NOTICE] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] connect ip=::1 port=64243 local_ip=:: local_port=587
[DEBUG] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] running lookup_rdns hooks
[DEBUG] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] running lookup_rdns hook in javascript/fooBar plugin
[INFO] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] hook=lookup_rdns plugin=javascript/fooBar function=hook_lookup_rdns params="" retval=OK msg=""
[DEBUG] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] running connect hooks
[DEBUG] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] running connect hook in javascript/fooBar plugin
[DEBUG] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] hook=connect plugin=javascript/fooBar function=hook_connect params="" retval=CONT msg="The MX25 SMTP API is now ready."
[PROTOCOL] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] S: 220 The MX25 SMTP API is now ready.
[PROTOCOL] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] C: EHLO richardas-mac-mini.local state=1
[DEBUG] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] running ehlo hooks
[DEBUG] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] running capabilities hooks
[DEBUG] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] running capabilities hook in javascript/fooBar plugin
[DEBUG] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] hook=capabilities plugin=javascript/fooBar function=hook_capabilities params="" retval=CONT msg=""
[DEBUG] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] running capabilities hook in tls plugin
[DEBUG] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] hook=capabilities plugin=tls function=hook_capabilities params="" retval=CONT msg=""
[PROTOCOL] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] S: 250-outbound.mx25.net Hello [::1], Haraka is at your service.
[PROTOCOL] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] S: 250-PIPELINING
[PROTOCOL] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] S: 250-8BITMIME
[PROTOCOL] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] S: 250-SIZE 500000
[PROTOCOL] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] S: 250 STARTTLS
[PROTOCOL] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] C: QUIT state=1
[DEBUG] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] running quit hooks
[PROTOCOL] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] S: 221 outbound.mx25.net closing connection. Have a jolly good day.
[DEBUG] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] running disconnect hooks
[NOTICE] [3D27FD1C-B94A-4271-84EB-460B32598491] [core] disconnect ip=::1 rdns="" helo="richardas-mac-mini.local" relay=N early=N esmtp=Y tls=N pipe=N txns=0 rcpts=0/0/0 msgs=0/0/0 bytes=0 lr="" time=0.008

我在这里迷路了。我已经搜索了 Haraka 关于这个主题的所有文档以及源代码和我找到的几个示例项目。为什么 Haraka 不授权我的身份验证?

编辑

我有验证码。我最初没有包含它,因为我认为它与错误无关。即使包含它,Haraka 输出也完全相同,并且函数第一行中的 this.loginfo 调用不会出现。 Swaks 产生的错误和输出也完全一样。在我把它包括在内之后,仍然在阅读马特的之后。为了仔细检查这一点,我还尝试注释掉 exports.check_plain_passwd 中的所有代码,并在所有情况下都返回 cb(true) 。没有改变。我得到了相同的输出和相同的错误。

最佳答案

您首先要尝试的是在调用 swaks 时使用 -tls。在服务器日志中,我看到它通告 STARTTLS(并且不通告 AUTH),但客户端立即退出而不是协商 TLS。如果确实存在问题,这是在向您隐瞒。

关于node.js - Haraka 未授权我的身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17888450/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com