views:

163

answers:

1

Hello all i need to implement service that sends users reminders via email , this should be multithreaded scheduled system this part is fine , but i need to install and configure smtp server for out going emails on the server , this is i have no clue how to do and what to expect my tools will be lamp combo on some Linux slice .

+3  A: 

First of all, this is probably more appropriate to post on serverfault.com, not this site. But to get you a head start, the term you want to search for is "Mail Transfer Agent" (MTA). Common ones on linux are postfix, sendmail, qmail, and others.

How you install it is going to be very distribution dependant, but since all you need is a relay server (send mail, no incoming mail) it is likely your distribution as a ready-made package that only needs minimal configuration.

Put a post on serverfault listing your linux distribution and I bet someone can get you started

Clyde