View previous topic :: View next topic |
Author |
Message |
markfl Apprentice
Joined: 10 Apr 2003 Posts: 240 Location: Kent, UK
|
Posted: Mon Dec 22, 2003 9:54 pm Post subject: Email Server |
|
|
I'm trying to set up phpbb to send emails for my forum and i want to set up an email server for this
The only problem is that all the guides i have read have shown how to forward email to your ISP so that they can route it....
My ISP doesnt provide this service for me so i want to set up my own email server that can send email directly but i have no idea where to start.
Can anyone give me a few hints please
MJ _________________ Life it seems, will fade away
Drifting further every day |
|
Back to top |
|
|
ikaro Advocate
Joined: 14 Jul 2003 Posts: 2527 Location: Denmark
|
|
Back to top |
|
|
Jaxom Tux's lil' helper
Joined: 31 Jan 2003 Posts: 137
|
Posted: Mon Dec 22, 2003 10:46 pm Post subject: |
|
|
The virtual mail guide might be a bit drastic. Just make sure you have postfix installed and configured.
Code: | vi /etc/postfix/main.cf |
you'll want to change a few things so only the local server can send mail.
Code: |
myhostname = your.host.name (ie host.mydomain.com)
mydomain = host.name (ie mydomain.com)
mynetworks = 127.0.0.0/8 |
then
Code: |
/etc/init.d/postfix start
rc-update add postfix default
|
That's the bare minimums that will get you by if you ONLY want your phpbb forum to be able to send out mail and keep you from being picked up by spamassassin for open relays or whatnot.
otherwise in phpbb, you'll notice in the configuration towards the bottom. You only need an smtp server. I have a hard time believing there's an ISP that doesn't have mail services for it's users. They might not want to give you that information, but I'm sure they have it. If you have an e-mail address with them, you have a mail server you can use. Just use their outgoing mail server address just as it is set in your mail client and there you go. _________________ Undisputed Heavyweight Champion. If it's undisputed, WHAT'S ALL THE FIGHTING ABOUT?!?! -- George Carlin |
|
Back to top |
|
|
markfl Apprentice
Joined: 10 Apr 2003 Posts: 240 Location: Kent, UK
|
Posted: Mon Dec 22, 2003 11:13 pm Post subject: |
|
|
no really - when i brought the dsl line they specifically stated that it contained no webspace or any email or other facilities - it was about £5 a month cheaper than the other lines _________________ Life it seems, will fade away
Drifting further every day |
|
Back to top |
|
|
markfl Apprentice
Joined: 10 Apr 2003 Posts: 240 Location: Kent, UK
|
Posted: Mon Dec 22, 2003 11:41 pm Post subject: |
|
|
well i think i know what i did but its working now
thanks for your help guys
this forum is the best place for advice - i was expecting it to take hours to get a reply
you guys should be proud _________________ Life it seems, will fade away
Drifting further every day |
|
Back to top |
|
|
|