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
Email::Date(3pm)					User Contributed Perl Documentation					  Email::Date(3pm)

NAME
Email::Date - Find and Format Date Headers SYNOPSIS
use Email::Date; my $email = join '', <>; my $date = find_date($email); print $date->ymd; my $header = format_date($date->epoch); Email::Simple->create( header => [ Date => $header, ], body => '...', ); DESCRIPTION
RFC 2822 defines the "Date:" header. It declares the header a required part of an email message. The syntax for date headers is clearly laid out. Stil, even a perfectly planned world has storms. The truth is, many programs get it wrong. Very wrong. Or, they don't include a "Date:" header at all. This often forces you to look elsewhere for the date, and hoping to find something. For this reason, the tedious process of looking for a valid date has been encapsulated in this software. Further, the process of creating RFC compliant date strings is also found in this software. FUNCTIONS find_date my $time_piece = find_date $email; "find_date" accepts an email message in any format Email::Abstract can understand. It looks through the email message and finds a date, converting it to a Time::Piece object. If it can't find a date, it returns false. "find_date" is exported by default. format_date my $date = format_date; # now my $date = format_date( time - 60*60 ); # one hour ago "format_date" accepts an epoch value, such as the one returned by "time". It returns a string representing the date and time of the input, as specified in RFC 2822. If no input value is provided, the current value of "time" is used. "format_date" is exported by default. format_gmdate my $date = format_gmdate; "format_gmdate" is identical to "format_date", but it will return a string indicating the time in Greenwich Mean Time, rather than local time. "format_gmdate" is exported on demand, but not by default. PERL EMAIL PROJECT
This module is maintained by the Perl Email Project <http://emailproject.perl.org/wiki/Email::Date> SEE ALSO
Email::Abstract, Time::Piece, Date::Parse, perl. AUTHOR
Casey West, <casey@geeknest.com>. Ricardo SIGNES, <rjbs@cpan.org>. COPYRIGHT
Copyright (c) 2004 Casey West. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2007-12-01 Email::Date(3pm)