Discover Centmin Mod today
Register Now

basic forward only email server

Discussion in 'System Administration' started by Shmee, May 8, 2015.

  1. Shmee

    Shmee New Member

    15
    2
    3
    Aug 27, 2014
    Space
    Ratings:
    +3
    Local Time:
    1:32 AM
    I'm wondering how difficult it would be to create a basic forward only email server.


    No storage of the emails, just allow me to create forwarders like user@centmindomain.com to -> user@gmail.com
     
  2. eva2000

    eva2000 Administrator Staff Member

    54,068
    12,176
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,734
    Local Time:
    1:32 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
  3. rdan

    rdan Well-Known Member

    5,443
    1,402
    113
    May 25, 2014
    Ratings:
    +2,194
    Local Time:
    11:32 PM
    Mainline
    10.2
    Yeah, try Zoho.
     
  4. redbird

    redbird Member

    84
    13
    8
    Aug 28, 2015
    Web
    Ratings:
    +22
    Local Time:
    1:32 AM
    Just found this solution elsewhere:

    Step 1: Signup for a free account in mailgun.com

    Step 2: Log into your account in Mailgun and add a domain from the top menubar. Once your domain is added, you will see that mailgun gives you a few MX records and TXT records to be added for your domain, for both successful email forwarding and verification of the domain.

    Step 3: Now go to your domain's DNS panel and add those MX records and TXT records provided by Mailgun.

    Step 4: This is the final step. Log into your Mailgun account and go to Routes section from the top menu. Now add as many routes as you want. For example, if your domain is example.com and you want all the mails sent to hello@example.com to be forwarded to doctor@who.com then create a route like this screenshot, and you are done :)



    Domain registrar email forwarding (like namecheap) is nice but it only works if you use their dns servers. We use cloudflare dns so it won't work ( but the solution above might be just fine


    Update: just found a more detailed instruction (including gmail setup):
    Mail Forwarding With Mailgun and CloudFlare
     
  5. eva2000

    eva2000 Administrator Staff Member

    54,068
    12,176
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,734
    Local Time:
    1:32 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Interesting approach, never thought of doing it that way !