Redmine
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
''目次''
#contents
~
----
*RedmineでPOP before SMTP で通知メールを送るための設定 [#...
~
メール通知がPOP before SMTPに対応していない模様。~
以下の方法で対応可。
~
+"app\models\Mailer.rb"の先頭で接続先のSMTPサーバの設定を...
~
# vi /home/htdocs/redmine-2.4.3/app/models/Mailer.rb
---(ここから)-----------------------------------------...
require 'net/pop'
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:address => 'smtp.hogehoge.com', # SMTPサーバのアド...
:port => 25,
:domain => 'localhost', # メールを送信する...
:authentication => 'none' # 認証はなし
}
---(ここまで)-----------------------------------------...
~
+後方にある''reminder''メソッド内でPOP認証を行う。
~
def reminder(user, issues, days)
set_language_if_valid user.language
@issues = issues
@days = days
@issues_url = url_for(:controller => 'issues', :action...
:set_filter => 1, :assigne...
:sort => 'due_date:asc')
mail :to => user.mail,
:subject => l(:mail_subject_reminder, :count => issu...
# POP before SMTPの設定 ...
Net::POP3.auth_only('pop.hogehoge.com', 110, 'ユーザ名...
end
~
終了行:
''目次''
#contents
~
----
*RedmineでPOP before SMTP で通知メールを送るための設定 [#...
~
メール通知がPOP before SMTPに対応していない模様。~
以下の方法で対応可。
~
+"app\models\Mailer.rb"の先頭で接続先のSMTPサーバの設定を...
~
# vi /home/htdocs/redmine-2.4.3/app/models/Mailer.rb
---(ここから)-----------------------------------------...
require 'net/pop'
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:address => 'smtp.hogehoge.com', # SMTPサーバのアド...
:port => 25,
:domain => 'localhost', # メールを送信する...
:authentication => 'none' # 認証はなし
}
---(ここまで)-----------------------------------------...
~
+後方にある''reminder''メソッド内でPOP認証を行う。
~
def reminder(user, issues, days)
set_language_if_valid user.language
@issues = issues
@days = days
@issues_url = url_for(:controller => 'issues', :action...
:set_filter => 1, :assigne...
:sort => 'due_date:asc')
mail :to => user.mail,
:subject => l(:mail_subject_reminder, :count => issu...
# POP before SMTPの設定 ...
Net::POP3.auth_only('pop.hogehoge.com', 110, 'ユーザ名...
end
~
ページ名: