Email server solution


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Email server solution
# 1  
Old 03-29-2015
Email server solution

Hello,

Can you please help with the decision of choosing the right solution for technical needs.

The need:

To have secured email communication.
All the emails should be encrypted during the process of sending.
All the emails should be encrypted on the email server itself.
Encryption send/receive when sending on same email domain.
What can be done when sending outside of domain?
Web access and local access in office when using M.Outlook or Thunderbird (some computers on Linux Mint).

Email server for team of 10-15 person.
Will need around 15-20 email addresses, maybe more later.
====

What email server would you suggest us?
Will we obtain our security goal if will use some online services, or if will rent a dedicated server or vps at our local hosting or internet provider?

Thank you in advance.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Send email from sendmail on AIX using exchange server as SMTP server

i am new in AIX i am trying to write a script to take a backup for specific files on server to and check error log if backup success send email to administrator , script done except for sending mail , i try to configure sendmail on aix to use our exchange server to send emails but still get error... (0 Replies)
Discussion started by: ahmed_salah
0 Replies

2. Solaris

Send an email from Solaris using Linux email server

Hello everyone I have a problem and I need your help: I have a Solaris 10 and Solaris 8 UNIX Servers, and Linux Centos4 as email server. I need send an email from Solaris servers preferably using Centos4 email server. I have no mail service configured in my Solaris computers (1 Reply)
Discussion started by: aflores
1 Replies

3. UNIX and Linux Applications

Mail Server Solution

Hello, Currently my company operates using an ageing Redhat Mail server using Sendmail. What I am currently looking for is an all in one mail server solution. Preferbly Open Source but thats not a deciding factor. It is not a large company and we would rather not look at uterlising MS... (1 Reply)
Discussion started by: stuaz
1 Replies

4. Linux

Email archicing solution

Hi, I was looking on Google and freshmeat.net for something to archive emails (lets say more than years old) for all users and move them somewhere - different file system. I can't find anything free or able to do the job. I'm going to write a script which will just move emails based on mtime... (0 Replies)
Discussion started by: columb
0 Replies
Login or Register to Ask a Question
Log::Dispatch::Email(3) 				User Contributed Perl Documentation				   Log::Dispatch::Email(3)

NAME
Log::Dispatch::Email - Base class for objects that send log messages via email SYNOPSIS
package Log::Dispatch::Email::MySender use Log::Dispatch::Email; use base qw( Log::Dispatch::Email ); sub send_email { my $self = shift; my %p = @_; # Send email somehow. Message is in $p{message} } DESCRIPTION
This module should be used as a base class to implement Log::Dispatch::* objects that send their log messages via email. Implementing a subclass simply requires the code shown in the SYNOPSIS with a real implementation of the "send_email()" method. CONSTRUCTOR
The constructor takes the following parameters in addition to the standard parameters documented in Log::Dispatch::Output: o subject ($) The subject of the email messages which are sent. Defaults to "$0: log email" o to ($ or @) Either a string or a list reference of strings containing email addresses. Required. o from ($) A string containing an email address. This is optional and may not work with all mail sending methods. o buffered (0 or 1) This determines whether the object sends one email per message it is given or whether it stores them up and sends them all at once. The default is to buffer messages. METHODS
o send_email(%p) This is the method that must be subclassed. For now the only parameter in the hash is 'message'. o flush If the object is buffered, then this method will call the "send_email()" method to send the contents of the buffer and then clear the buffer. o DESTROY On destruction, the object will call "flush()" to send any pending email. AUTHOR
Dave Rolsky, <autarch@urth.org> perl v5.12.1 2009-09-22 Log::Dispatch::Email(3)