Config redmine email smtp with outlook.com mail service

  1. edit redmine-root/config/configuration.yml
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    production:
    email_delivery:
    delivery_method: :smtp
    smtp_settings:
    enable_starttls_auto: true
    address: "smtp.office365.com"
    port: 587
    domain: "outlook.com"
    authentication: :login
    user_name: "username@outlook.com"
    password: "password"
  2. Restart your redmine daemon, options of “Administration : Email Notification” will be available.
  3. Send a test email via redmine Administration : Email Notification tab
    If you got error like “WASCL UserAction verdict is not None. Actual verdict is HipNotify, ShowTierUpgrade.”,
    please check your outlook.com inbox and follow the guide to validate your Outlook.com account.
    And try again.
  4. Check your receiving email inbox or junk email, it’s done.

Reference from:

Here is an example for Office 365 users (Exchange online).