위키 메일 발송 설정

법학위키
둘러보기로 이동 검색으로 이동
  • 이런 저런 설정으로도 잘 안된다면 swiftmailer를 이용해보자
  • 링크의 파일을 다운로드 받고 extensions 폴더에 넣어준 후 아래와 같이 설정하면 된다.
  • tls 든 ssl 이든 뭔가 오류가 발생하는 경우 메일서버의 smtp 인증서가 정상적으로 갱신되어 있는지 확인하자.
extension.json "config": {

"SMTPAuthenticationMethod": {

"value": "tls"

}

},

LocalSettings.php $wgSMTP = [

      'host'=> "smtp.yoursmtp.org",

      'IDHost'   => "yourhost.org",

      'port'     => 587,

      'auth'     => true,

      'username' => "yourSMTPusername",

      'password' => "yourSMTPpassword"

];