- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Absolute newbie in mail setup
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2003 09:27 PM
06-12-2003 09:27 PM
Absolute newbie in mail setup
I have experience in other aspects of Linux but this is the very first time I will need to setup a mail system which I know very little about.
The mail server will reside behind a gateway. The gateway will be connected to an ISP. The mail server will be a cobalt Qube2.
I know there are issues like MX records, /etc/sendmail, but in general how should I setup a mail server to receive and send mail to others and allow users to download mail using outlook express etc...
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2003 09:34 PM
06-12-2003 09:34 PM
Re: Absolute newbie in mail setup
Please go thru this link.
http://www.pcquest.com/content/linux/handson/101071103.asp
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2003 09:35 PM
06-12-2003 09:35 PM
Re: Absolute newbie in mail setup
Please go thru this link.
http://www.pcquest.com/content/linux/handson/101071103.asp
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2003 10:12 PM
06-12-2003 10:12 PM
Re: Absolute newbie in mail setup
1) Mail for multiple domains.
2) Direct connection to the Internet mailing. It takes care of all inbound mail on my network. For outbound my users have a choice of Exchange or this server.
To make this work you need to either have a working DNS machine locally or a connection to one in /etc/resolv.conf
To accomodate your Microsoft users you will need to authorize either popmail or imap or both.
There are a lot of tasks involved so here are some links that will hook you up.
http://www.sendmail.org
Great setup info there, I learned a lot there.
http://tldp.org
The Linux Documentation Project. Sendmail and DNS howto's there to deal with any specific aspect of your project.
I could write a book about this covering all the ins and outs. If you look back at my questions posted, you'll see a bunch of sendmail ones late last year, all resolved at the above websites or in these forums.
go ahead and start and post specific questions, and I promise you you'll get lots of help.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2003 09:29 AM
06-13-2003 09:29 AM
Re: Absolute newbie in mail setup
is more easy to configure than sendmail, is a good substitute.
The configuration file is "human" readable and "human" configurable.
Cheers
Frank.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2003 12:29 PM
06-13-2003 12:29 PM
Re: Absolute newbie in mail setup
In order to announce the world about the location of your mail server, you will need an MX (Mail eXchange) record in the zone file describing your domain. This problem should probably be handled by your ISP (assuming your domain is hosted by the ISP). If not, then whoever hosts the domain must provide you with the means to define the MX record. Details on DNS setup and configuration can be found via google, at http://tldp.org (the linux documentation project) and at www.isc.org (http://www.isc.org/products/BIND/bind9.html -> documentation)
As for the actual configuration of the mail server, this depends on the program you choose to use. sendmail uses generally /etc/sendmail/* (several files, depending on the features sendmail is compiled with and on the main configuration file, which in turn refers to a few others). postfix uses /etc/postfix/* (main.cf being the main beast); it includes plenty of comments + solid documentation). and finally, lifewithqmail.com will guide you step by step how to install and configure qmail.