![]() |
|
|
|||
|
mail server for web development only
What is the best was to setup a mail server for local test web
development only. No problem setting up with Apache, MySql, Bind, but the array of mail servers is bewildering. Need mail server just to test cgi and php scripts for development sites. Need to access mailboxes from my LAN, my workstations are WinXP and servers are Ubuntu. So far all I have found is either woefully obsolete, overly complicated, and or for relaying email to and from public internet. I want this only for hosts on "private.lan" domain. Anyone point me to a resource? -- Take care, Jonathan ------------------- LITTLE WORKS STUDIO http://www.LittleWorksStudio.com |
|
|||
|
Re: mail server for web development only
On 2008-07-22, Jonathan N. Little <lws4art@central.net> wrote:
> What is the best was to setup a mail server for local test web > development only. No problem setting up with Apache, MySql, Bind, but > the array of mail servers is bewildering. Need mail server just to test > cgi and php scripts for development sites. Need to access mailboxes from > my LAN, my workstations are WinXP and servers are Ubuntu. So far all > I have found is either woefully obsolete, overly complicated, and or for > relaying email to and from public internet. I want this only for hosts > on "private.lan" domain. > > Anyone point me to a resource? postfix is very easy. I would say use postfix. It should be good to use as-installed. -- Due to extreme spam originating from Google Groups, and their inattention to spammers, I and many others block all articles originating from Google Groups. If you want your postings to be seen by more readers you will need to find a different means of posting on Usenet. http://improve-usenet.org/ |
|
|||
|
Re: mail server for web development only
Ignoramus14558 wrote:
> On 2008-07-22, Jonathan N. Little <lws4art@central.net> wrote: >> What is the best was to setup a mail server for local test web >> development only. No problem setting up with Apache, MySql, Bind, but >> the array of mail servers is bewildering. Need mail server just to test >> cgi and php scripts for development sites. Need to access mailboxes from >> my LAN, my workstations are WinXP and servers are Ubuntu. So far all >> I have found is either woefully obsolete, overly complicated, and or for >> relaying email to and from public internet. I want this only for hosts >> on "private.lan" domain. >> >> Anyone point me to a resource? > > postfix is very easy. I would say use postfix. It should be good to > use as-installed. So I have read, but all the configuration examples|tutorials have it allowing "outside" connection. I only want "intra-LAN". Do I have to install it to get more complete info? Came across exim that seems to show LAN-only mail configuration...any comments? -- Take care, Jonathan ------------------- LITTLE WORKS STUDIO http://www.LittleWorksStudio.com |
|
|||
|
Re: mail server for web development only
Jonathan N. Little <lws4art@central.net> wrote:
> Came across exim that seems to show LAN-only mail configuration...any > comments? exim4 is a MTA. It only does smtp/lmtp, no pop3 or imap. It can put e-mail sent locally into a local mailbox file. -- Niklaus |
|
|||
|
Re: mail server for web development only
Niklaus Kuehnis wrote:
> Jonathan N. Little <lws4art@central.net> wrote: > >> Came across exim that seems to show LAN-only mail configuration...any >> comments? > > exim4 is a MTA. It only does smtp/lmtp, no pop3 or imap. It can put > e-mail sent locally into a local mailbox file. > I have experience in a number of things but mail servers is not one of them, so pardon me as I ask for some clarification. So exim4 as an MTA can only receive requests says from a script and store the message on the server's local mailbox file but cannot deliver the message to some other computer on the LAN via an email client? Whereas postfix is handles both processes? If postfix is what I need then can anyone please point to to some info that explains how to set it up as a local LAN-only mail server? Plain English would help. TIA -- Take care, Jonathan ------------------- LITTLE WORKS STUDIO http://www.LittleWorksStudio.com |
|
|||
|
Re: mail server for web development only
On 2008-07-22, Jonathan N. Little <lws4art@central.net> wrote:
> Niklaus Kuehnis wrote: >> Jonathan N. Little <lws4art@central.net> wrote: >> >>> Came across exim that seems to show LAN-only mail configuration...any >>> comments? >> >> exim4 is a MTA. It only does smtp/lmtp, no pop3 or imap. It can put >> e-mail sent locally into a local mailbox file. >> > I have experience in a number of things but mail servers is not one of > them, so pardon me as I ask for some clarification. So exim4 as an MTA > can only receive requests says from a script and store the message on > the server's local mailbox file but cannot deliver the message to some > other computer on the LAN via an email client? both exim4 and postfix can do it and both are easy to use. > Whereas postfix is handles both processes? If postfix is what I need > then can anyone please point to to some info that explains how to set it > up as a local LAN-only mail server? Plain English would help. TIA > sudo aptitude install postfix should ask you some questions such as how your computer is set up etc. -- Due to extreme spam originating from Google Groups, and their inattention to spammers, I and many others block all articles originating from Google Groups. If you want your postings to be seen by more readers you will need to find a different means of posting on Usenet. http://improve-usenet.org/ |
|
|||
|
Re: mail server for web development only
Jonathan N. Little <lws4art@central.net> wrote:
> Niklaus Kuehnis wrote: > > Jonathan N. Little <lws4art@central.net> wrote: > > > I have experience in a number of things but mail servers is not one of > them, so pardon me as I ask for some clarification. So exim4 as an MTA > can only receive requests says from a script and store the message on > the server's local mailbox file but cannot deliver the message to some > other computer on the LAN via an email client? > Whereas postfix is handles both processes? If postfix is what I need > then can anyone please point to to some info that explains how to set it > up as a local LAN-only mail server? Plain English would help. TIA I may not be more of an expert on this topic than you are. From what you wrote/write I thought you needed a server from which a user can remotely pull mail using an e-mail client. If that's correct, I'd say you need a POP3 or IMAP server. exim and postfix are both MTAs and do roughly the same. They can send mail from one machine to another (or to localhost) using smtp. They will not send to an e-mail client directly. HTH a bit, Niklaus |
|
|||
|
Re: mail server for web development only
Jonathan N. Little wrote:
> Niklaus Kuehnis wrote: >> Jonathan N. Little <lws4art@central.net> wrote: >> >>> Came across exim that seems to show LAN-only mail configuration...any >>> comments? >> >> exim4 is a MTA. It only does smtp/lmtp, no pop3 or imap. It can put >> e-mail sent locally into a local mailbox file. >> > I have experience in a number of things but mail servers is not one of > them, so pardon me as I ask for some clarification. So exim4 as an MTA > can only receive requests says from a script and store the message on > the server's local mailbox file but cannot deliver the message to some > other computer on the LAN via an email client? > > Whereas postfix is handles both processes? If postfix is what I need > then can anyone please point to to some info that explains how to set it > up as a local LAN-only mail server? Plain English would help. TIA > It works on the local lan by default. You have to setup a mailbox for each user and then decide how the user will access their mail ie pop3/imap/web. You will then need to install a package to handle this. Have a look at squirrelmail and dovecot. As in all things Linux, there are endless choices for what you want to do. |
|
|||
|
Re: mail server for web development only
Ian Pawson wrote:
> It works on the local lan by default. You have to setup a mailbox for > each user and then decide how the user will access their mail ie > pop3/imap/web. You will then need to install a package to handle this. > Have a look at squirrelmail and dovecot. As in all things Linux, there > are endless choices for what you want to do. Wound up using postfix + dovecot. Seems to do what I need, php scripts are able to send messages and I am able to retrieve them from Thunderbird on my workstation. -- Take care, Jonathan ------------------- LITTLE WORKS STUDIO http://www.LittleWorksStudio.com |
|
|||
|
Re: mail server for web development only
"Jonathan N. Little" <lws4art@central.net> wrote:
> What is the best was to setup a mail server for local test web > development only. No problem setting up with Apache, MySql, Bind, but > the array of mail servers is bewildering. Need mail server just to > test cgi and php scripts for development sites. Need to access > mailboxes from my LAN, my workstations are WinXP and servers are > Ubuntu. So far all I have found is either woefully obsolete, overly > complicated, and or for relaying email to and from public internet. I > want this only for hosts on "private.lan" domain. > > Anyone point me to a resource? Install postfix or exim and choose "Local delivery only" when asked. Should work out of the box. Florian -- <http://www.florian-diesch.de/> ----------------------------------------------------------------------- ** Hi! I'm a signature virus! Copy me into your signature, please! ** ----------------------------------------------------------------------- |
![]() |
|
| Thread Tools | Search this Thread |
| Display Modes | |
|
|