質問編集履歴

4

パスワードの違い

2015/09/26 04:49

投稿

axax90
axax90

スコア120

test CHANGED
File without changes
test CHANGED
@@ -49,3 +49,103 @@
49
49
  zohoのsmtpの設定
50
50
 
51
51
  [https://www.zoho.com/mail/help/zoho-smtp.html](https://www.zoho.com/mail/help/zoho-smtp.html)
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+ 追記
60
+
61
+
62
+
63
+
64
+
65
+ 正しいパスワードだと、
66
+
67
+
68
+
69
+ ```
70
+
71
+ config.action_mailer.delivery_method = :smtp
72
+
73
+ config.action_mailer.smtp_settings = {
74
+
75
+ :address => "smtp.zoho.com",
76
+
77
+ :port => 465,
78
+
79
+ :domain => 'localhost',
80
+
81
+ :user_name => 'ユーザー名',
82
+
83
+ :password => '正しいパスワード',
84
+
85
+ :authentication => :login,
86
+
87
+ :ssl => false,
88
+
89
+ :tls => true,
90
+
91
+ :enable_starttls_auto => true
92
+
93
+ }
94
+
95
+ ```
96
+
97
+
98
+
99
+ ↓のエラーです。
100
+
101
+
102
+
103
+ ```
104
+
105
+ EOFError: end of file reached
106
+
107
+ ```
108
+
109
+
110
+
111
+ 不正なパスワードだと、
112
+
113
+
114
+
115
+ ```
116
+
117
+ config.action_mailer.delivery_method = :smtp
118
+
119
+ config.action_mailer.smtp_settings = {
120
+
121
+ :address => "smtp.zoho.com",
122
+
123
+ :port => 465,
124
+
125
+ :domain => 'localhost',
126
+
127
+ :user_name => 'ユーザー名',
128
+
129
+ :password => '不正なパスワード',
130
+
131
+ :authentication => :login,
132
+
133
+ :ssl => false,
134
+
135
+ :tls => true,
136
+
137
+ :enable_starttls_auto => true
138
+
139
+ }
140
+
141
+ ```
142
+
143
+
144
+
145
+ ↓のエラーでした。
146
+
147
+ ```
148
+
149
+ Net::SMTPAuthenticationError: 535 Authentication Failed
150
+
151
+ ```

3

zohoのsmtpの設定

2015/09/26 04:49

投稿

axax90
axax90

スコア120

test CHANGED
File without changes
test CHANGED
@@ -43,3 +43,9 @@
43
43
 
44
44
 
45
45
  StackOverFlowで書かれている情報は古いのでしょうか?
46
+
47
+
48
+
49
+ zohoのsmtpの設定
50
+
51
+ [https://www.zoho.com/mail/help/zoho-smtp.html](https://www.zoho.com/mail/help/zoho-smtp.html)

2

fix

2015/09/26 04:44

投稿

axax90
axax90

スコア120

test CHANGED
File without changes
test CHANGED
@@ -32,7 +32,7 @@
32
32
 
33
33
 
34
34
 
35
- ・コントロールパネル → ユーザーの詳細 → モバイルとの同期を有効
35
+ ・コントロールパネル → ユーザーの詳細 → メールアカウント → モバイルとの同期を有効
36
36
 
37
37
 
38
38
 

1

リンクを追加

2015/09/26 04:42

投稿

axax90
axax90

スコア120

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,6 @@
1
1
  StackOverFlowなども参考にしながら設定をしているのですが、うまくいきません。
2
2
 
3
- http://stackoverflow.com/questions/13834716/rails-actionmailer-configuration-for-zoho
3
+ [http://stackoverflow.com/questions/13834716/rails-actionmailer-configuration-for-zoho](http://stackoverflow.com/questions/13834716/rails-actionmailer-configuration-for-zoho)
4
4
 
5
5
 
6
6