LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 07-08-2003, 08:01 AM   #1
vvandam
Member
 
Registered: Jul 2003
Location: South Africa
Distribution: RedHat 9
Posts: 34

Rep: Reputation: 15
Question Linux Mail Server and Exchange Mail


I am currently using 3 MS Exchange servers from my head office in Sweden. I would like to install a Linux mail server in South Africa as a pilot project. Here is the problem...

I need a low budget solution:
:::
:::
The Linux server needs to collect mail from the exchange servers and store it as a remote mail box server and then forward it to clients as they request it.

What software would be recommended?

All help would be appreciated....
 
Old 07-08-2003, 10:37 AM   #2
cyph3r7
Member
 
Registered: Apr 2003
Location: Silicon Valley East, Northern Virginia
Distribution: FreeBSD,Debian, RH, ok well most of em...
Posts: 238

Rep: Reputation: 30
Are you looking for a store and forward solution? Or a mail relay? Meaning are you looking to relay mail to/from Africa or will you be using the Africa location to store and forward in case your other locs mail servers crash?
 
Old 07-08-2003, 11:16 AM   #3
chort
Senior Member
 
Registered: Jul 2003
Location: Silicon Valley, USA
Distribution: OpenBSD 4.6, OS X 10.6.2, CentOS 4 & 5
Posts: 3,660

Rep: Reputation: 76
Well if you don't want the Exchange servers directly accessing the Internet and want Linux to do this instead, you can setup the "smarthost" option on Exchange to send all Internet mail (not your internal mail) to the IP of the Linux box. You can configure Postfix or Qmail on Linux to receive the mail and store it.

I'm not exactly sure what you're asking, though. Do you want mail for all Internet domains to go there, or just for a few domains that your users get mail at? You need to provide more details.
 
Old 07-08-2003, 12:50 PM   #4
sergkh
LQ Newbie
 
Registered: Jul 2003
Location: Ukraine
Distribution: Mandrake Debian
Posts: 15

Rep: Reputation: 0
Re: Linux Mail Server and Exchange Mail

Quote:
Originally posted by vvandam

The Linux server needs to collect mail from the exchange servers and store it as a remote mail box server and then forward it to clients as they request it.
I need some additional information .
Linux server must colect mail from server in sweden ? or receive (or relay ) mail from (to ) main office ?
M$ Exchange its no mail server only ( NOT only SMTP POP IMAP)
Quote:
store it as a remote mail box server
What you mean ?
Mail server in SA store Mailbox using Sweden server ?
I am using Postfix + vm-pop3d (store few domain ) & its work good .
May its help you ?

Sorry for my bad english
 
Old 07-09-2003, 02:17 AM   #5
vvandam
Member
 
Registered: Jul 2003
Location: South Africa
Distribution: RedHat 9
Posts: 34

Original Poster
Rep: Reputation: 15
Question

Thanx to all for the quick responses.

More info:

Currently my M$ Exchange servers in Sweden receive and store all my mail entering the company. I can set them up to forward all received mail for a list of user accounts to a remote ?Exchange? server in South Africa which will store these messages.

The local SA mail server will be forwarding all out going mail to the Swedish servers which will in turn send them to there destination.

The M$ Exchange server is hosting all calander info for each user as well.

Hope this helps.
 
Old 07-09-2003, 03:06 AM   #6
sergkh
LQ Newbie
 
Registered: Jul 2003
Location: Ukraine
Distribution: Mandrake Debian
Posts: 15

Rep: Reputation: 0
Quote:
Originally posted by vvandam
Thanx to all for the quick responses.

More info:

I can set them up to forward all received mail for a list of user accounts to a remote ?Exchange? server in South Africa which will store these messages.
create forward list look as :
user1@sweserver.com user1@saserver.com
user2@sweserver.com user2@saserver.com


Quote:
The local SA mail server will be forwarding all out going mail to the Swedish servers which will in turn send them to there destination.
prepare SA server send all mail throw Swedish server . ( its no hard , if you use Postfix I may add some additional information)
Set SA server as trusted server for SW server
I see one problem only:
letter from user1@saserver.com to user2@saserver.com send direct to user2.saservermailbox
but
from user1@saserver.com to user2@swserver.com send fine
letter path(for user2@swserver.com) :
user1 --> saserver -->swserver--> sasever->user2.mailbox
but for user2@saserver.com:
user1--> saserver--> user2.mailbox
I'm sorry for my bad english
 
Old 07-09-2003, 03:06 AM   #7
chort
Senior Member
 
Registered: Jul 2003
Location: Silicon Valley, USA
Distribution: OpenBSD 4.6, OS X 10.6.2, CentOS 4 & 5
Posts: 3,660

Rep: Reputation: 76
So bascially you want a Linux box to receive mail for certain users and allow them to retrieve it. All mail from the local office where the Linux box is should go back to the Exchange server.

OK, that is very simple. As long as you can forward the mail from Exchange (which I think is quite possible) you can configure Postfix (for example) to accept mail for those few users and store it locally. You can then setup something like UW-IMAP, Cyrus, etc to serve the mail via IMAP4, or Qpopper, etc to serve mail via POP3. Any mail that those local users send into the Linux box can be statically forwarded back to the Exchange server and Exchange should handle it from there. You will need to add the IP of the Linux box as a host which is allowed to relay through Exchange.

The calendars (if they're in Outlook) are accessed via MAPI which is Exchange-native. You won't be able to do that with Linux, but Linux does have several nice calendar and scheduling applications (the Evolution mail client has one, for instance).
 
Old 07-09-2003, 06:44 AM   #8
vvandam
Member
 
Registered: Jul 2003
Location: South Africa
Distribution: RedHat 9
Posts: 34

Original Poster
Rep: Reputation: 15
This is correct, chort and sergkh.

Would I still be able to use M$ Outlook to connect to the Linux Mail Server in South Africa?

What software would be recommended for me to install on the Linux server to receive mail from the exchange server and store it in individual mail boxes?

What mail server software would be recommended?

PS. My aim is to implement an invisible mail server, i.e. the Exchange servers must think that they are forwarding and receiving mail to another Exchange server, but in fact they will be sending and receiving mail from a Linux server.

.....
vvandam
 
Old 07-09-2003, 07:24 AM   #9
sergkh
LQ Newbie
 
Registered: Jul 2003
Location: Ukraine
Distribution: Mandrake Debian
Posts: 15

Rep: Reputation: 0
Sendind & receiving mail its SMTP only .
Im use Postfix for SMTP , vm-pop3d for POP3
courier for IMAP .
If you have fine connect ( short ping time ) all must be all right
 
Old 07-10-2003, 07:17 AM   #10
vvandam
Member
 
Registered: Jul 2003
Location: South Africa
Distribution: RedHat 9
Posts: 34

Original Poster
Rep: Reputation: 15
Wink

Hi Guys

Here is another update to make the problem more complex...

I need to install the Linux Mail server into an existing NT domain. The users retrieving mail from this Linux box needs to be authenticated via the NT domain.

Any sugestions?

-----------
vvandam
 
Old 07-11-2003, 04:42 PM   #11
sergkh
LQ Newbie
 
Registered: Jul 2003
Location: Ukraine
Distribution: Mandrake Debian
Posts: 15

Rep: Reputation: 0
Use OpenLDAP ...
(I do it mmm last year )
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Reading mail from Exchange server gbrewste Linux - Software 1 06-19-2004 02:45 PM
Sending mail with PHP on linux machine through exchange on Windows server 2003 TVScoundrel Linux - Newbie 1 06-18-2004 01:22 PM
Sending mail with PHP on linux machine through exchange on Windows server 2003 TVScoundrel Linux - Networking 2 06-18-2004 12:02 PM
What e-mail server to use other than MS Exchange? nickolse Linux - Networking 3 11-01-2003 01:17 AM
RedHat 8.0 mail connection to MS Exchange Server dkeva Linux - Networking 2 01-20-2003 12:12 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 06:05 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration