- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用了本教程中的 Gmail 设置,效果很好:
Tutorial: https://freedif.org/how-to-install-sharetribe-for-ubuntu-16-04
# Email configurations: (Sendmail + Gmail)
Login to your gmail account, enable imap.
Let the access here first: https://www.google.com/settings/security/lesssecureapps
Go to: https://accounts.google.com/b/0/DisplayUnlockCaptcha
sudo apt-get install sendmail mailutils sendmail-bin
folder and configuration file::
sudo mkdir -m 700 /etc/mail/authinfo/
sudo su
cd /etc/mail/authinfo/
sudo nano gmail-auth
AuthInfo: "U:root" "I:myemail@gmail.com" "P:mypass"
the hash map:
sudo makemap hash gmail-auth < gmail-auth
configure your sendmail:
sudo nano /etc/mail/sendmail.mc
paste just before the first MAILER definition line: (` and ' inconsistency is OK!)
define(`SMART_HOST',`[smtp.gmail.com]')dnl
define(`RELAY_MAILER_ARGS', `TCP $h 587')dnl
define(`ESMTP_MAILER_ARGS', `TCP $h 587')dnl
define(`confAUTH_OPTIONS', `A p')dnl
TRUST_AUTH_MECH(`EXTERNAL DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
define(`confAUTH_MECHANISMS', `EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl
FEATURE(`authinfo',`hash -o /etc/mail/authinfo/gmail-auth.db')dnl
Now rebuild the sendmail configuration and restart it:
make -C /etc/mail
restart sendmail
Configure Sharetribe to use Sendmail:
exit root user CTRL+D
nano ~/sharetribe/config/config.yml
mail_delivery_method: "sendmail"
mail_delivery_method: "smtp"
smtp_email_address: "myuser@example.com"
smtp_email_port: 465
smtp_email_domain: "smtpserver.example.com"
smtp_email_user_name: "myuser@example.com"
smtp_email_password: "mypass"
To Action From
-- ------ ----
[ 1] OpenSSH ALLOW IN Anywhere
[ 2] Apache Full ALLOW IN Anywhere
[ 3] 11211 ALLOW IN Anywhere
[ 4] 25 ALLOW IN Anywhere
[ 5] 465 ALLOW IN Anywhere
[ 6] 587 ALLOW IN Anywhere
[ 7] OpenSSH (v6) ALLOW IN Anywhere (v6)
[ 8] Apache Full (v6) ALLOW IN Anywhere (v6)
[ 9] 11211 (v6) ALLOW IN Anywhere (v6)
[10] 25 (v6) ALLOW IN Anywhere (v6)
[11] 465 (v6) ALLOW IN Anywhere (v6)
[12] 587 (v6) ALLOW IN Anywhere (v6)
mysuser@example:~/sharetribe$ RAILS_ENV=production rake jobs:work
[Worker(host:example.com pid:2407)] Starting job worker
2019-07-31T13:42:52-0700: [Worker(host:example.com pid:2407)] Starting job worker
[Worker(host:example.com pid:2407)] Job CreateMemberEmailBatchJob (id=1) (queue=default) RUNNING
2019-07-31T13:43:12-0700: [Worker(host:example.com pid:2407)] Job CreateMemberEmailBatchJob (id=1) (queue=default) RUNNING
{"tag":"delayed_job","free":"Running job","type":"running","structured":{"job_name":"CreateMemberEmailBatchJob","args":{"sender_id":"123","community_id":1,"content":"123123","locale":"any","mode":"all_users"}}}
{"tag":"delayed_job","free":"Job success","type":"success","structured":{"job_name":"CreateMemberEmailBatchJob","args":{"sender_id":"123","community_id":1,"content":"123123","locale":"any","mode":"all_users"}}}
[Worker(host:example.com pid:2407)] Job CreateMemberEmailBatchJob (id=1) (queue=default) COMPLETED after 0.7504
2019-07-31T13:43:13-0700: [Worker(host:example.com pid:2407)] Job CreateMemberEmailBatchJob (id=1) (queue=default) COMPLETED after 0.7504
[Worker(host:example.com pid:2407)] Job CommunityMemberEmailSentJob (id=2) (queue=default) RUNNING
2019-07-31T13:43:13-0700: [Worker(host:example.com pid:2407)] Job CommunityMemberEmailSentJob (id=2) (queue=default) RUNNING
{"tag":"delayed_job","free":"Running job","type":"running","structured":{"job_name":"CommunityMemberEmailSentJob","args":{"sender_id":"123","recipient_id":"123","community_id":1,"content":"123123","locale":"any","test_to_yourself":null}}}
127.0.0.1:11211 failed (count: 0) Errno::ECONNREFUSED: Connection refused - connect(2) for "127.0.0.1" port 11211
DalliError: No server available
127.0.0.1:11211 failed (count: 1) Errno::ECONNREFUSED: Connection refused - connect(2) for "127.0.0.1" port 11211
127.0.0.1:11211 is down
DalliError: No server available
{"tag":"action_mailer","free":"Delivering email","type":"delivering_email","structured":{"to":["mysuser@example.com"],"from":["info@example.com"],"subject":"A new message from the example com team"}}
最佳答案
我正在使用品牌电子邮件。我可以看到端口可能存在的问题。
查看this line
# we have `:enable_starttls_auto => true` and we use 465. It works
smtp_email_port: 465
连同
:enable_starttls_auto => true
我们还有
:ssl => true
在生产中.rb
Outgoing Server Name: smtp.zoho.in
Port: 465 with SSL or
Port: 587 with TLS
关于ruby - 为 Sharetribe 配置 SMTP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57305137/
大家好,我是 php 和 html 新手,面临问题:SMTP 错误:无法连接到 SMTP 主机。邮件程序错误:SMTP 错误:无法连接到 SMTP 主机。但在本地 xampp 中工作正常,在服务器中出
我希望这个问题不是完全偏离主题。 我一直想知道 SMTP 电子邮件验证。有很多服务(例如 Kickbox.io、Email-Validator.net 等)似乎可以处理 SMTP 验证,而不会阻止其
我正在尝试使用 phpMailer 通过电子邮件向用户发送确认消息。我的代码是这样的: IsSMTP(); // set mailer to use SMTP $mail->Host = "ssl:/
我已经在我的本地机器(Windows 7)上安装了 bugzilla 并且它运行良好。但是当我尝试创建一个新帐户时,它说 There was an error sending mail from it
我有一个将发送大量输出的程序。我只是想知道最大电子邮件附件大小是多少?根据RFC 1870邮件服务器可以拒绝邮件,因为它们太大了,但是使用 SMTP/MIME 时有最大大小吗?我在这方面找不到任何东西
假设我有一个网站,其某些功能需要电子邮件验证(例如用户注册)。当然,我会使用正则表达式验证电子邮件,但曾几何时,我在其他人的代码中看到了 SMTP 验证。 SMTP 验证有哪些优点和缺点? 我可以假设
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 2年前关闭。 Improve thi
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a software
我正在尝试使用 Vala 和 GLib + GIO 实现一个简单的 SMTP 服务器。 到目前为止,纯文本通信没有问题,但当涉及使用 STARTTLS 的 TLS 时,事情会变得更加困难。 这是我到目
我使用 go 的 net/smtp 发送电子邮件,它对某些电子邮件工作正常但对其他电子邮件无效。我收到 554 5.5.1 Error: no valid recipients 但我很确定我提供了正确
我需要帮助 这是我的代码: require 'PHPMailerAutoload.php'; $mail = new PHPMailer; $mail->isSMTP(); $mail->Host =
我的 joomla 联系表 gmail SMTP 设置不起作用。请参阅下面提交联系表时显示的消息。应该是什么原因?extension=php_openssl.dll 也启用了.. 错误信息-: SMT
我正在尝试使用 Amazon 的 SES/SMTP 发送电子邮件,但出现以下错误: javax.mail.MessagingException:无法连接到 SMTP 主机:email-smtp.us-
在我的Mac终端上,我试图通过telnet将smtp.gmail.com转换为port 587。 在Google Apps(设置为管理Dreamhost域)上,我已配置了中继,如下所示: "Allow
理论上,Request For Comments (RFC) 集包含开发人员构建 SMTP 客户端需要知道的一切。然而,要知道哪些 RFC 需要考虑,哪些可以忽略并不总是那么容易。 有没有人有 RFC
MT 支持 SMTP SendMail,还是我坚持使用 MFMailComposeViewController?现在,我可以使用它(MFMailComposeViewController),但是当我添
很难说出这里问的是什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或言辞激烈,无法以目前的形式合理回答。如需帮助澄清此问题以便可以重新打开,visit the help center . 10年前关
我正在尝试通过 BizTalk SMTP 发送端口发送消息。具体来说,我正在通过编排的“稍后指定”端口发送消息。我的目标是使用我选择的附件文件名将消息正文附加到已发送的电子邮件。 但是,无论我尝试什么
我正在编写一个通过有效的 GMail 用户 ID 和密码发送邮件的应用程序。 我只是想在 Windows XP 命令行上模拟 SMTP 连接,当我在 465 端口 telnet smtp.gmail.
关于从应用程序通过 GMails SMTP 服务器发送的电子邮件被标记为垃圾邮件的问题已经有很多讨论。 阅读其他帖子我无法弄清楚我的问题。我的电子邮件最终仍然是 SPF 中性的。 在我的 *(捕获所有
我是一名优秀的程序员,十分优秀!