SlideShare a Scribd company logo
24/08/13

Your own mail server with Virtualmin – Low End Box

LowEndBox
Hosting Websites on Bare Minimum VPS/Dedicated Servers

Your own mail server with Virtualmin
tutorials

August 24, 2013 @ 8:34 am, by Maarten Kossen

In light of recent events, there’s been a lot of chatter about leaving free e-mail services in favor of self-hosted
e-mail. With self-hosted e-mail you have the option to host your e-mail wherever you want it, either on a
server at home or on a VPS.
There’s plenty of affordable options around to run your own mail server. I would personally recommend a
Xen or KVM VPS for this, as with OpenVZ it is really easy for your provider to “snoop” on your e-mail. This
is also possible with Xen or KVM, but it usually requires a reboot (which you will probably notice).
I’ve used a 512MB Xen VPS for this tutorial. I’ve used “this much” memory because I want to run clamd and
SpamAssassin in RAM. The server also has 45GB of disk space, which is more than enough to run a couple
of big mailboxes on. You could do with less RAM (though that would increase the CPU load and slow down
mail processing) and far less disk space (depending on your needs), but with “my” specs, you’re on the safe
side.

Installing Virtualmin
I’m using Virtualmin in this tutorial. The choice for Virtualmin is quite easy: it’s free, fast, stable and doesn’t
invade your system (like, for example, cPanel does). Virtualmin may not have the prettiest UI out there, but it’s
clean and it’s effective. You’ll only be using Virtualmin to create and administrate mailboxes. Other than that,
you won’t need it.
Virtualmin has an open source (GPL) version and a commercial version. The commercial version has some
“advanced” features not in the GPL version. I’ll be using the GPL version. This should run on most Linux
distributions and FreeBSD.
So let’s install Virtualmin. I recommend a clean server for this, to avoid any conflicts. On the server, run:
wget http://software.virtualmin.com/gpl/scripts/install.sh
Which will get the installer script. Next, make it executable:
chmod +x install.sh
And finally, run the installer:
sudo ./install.sh
lowendbox.com/blog/your-own-mail-server-with-virtualmin/

1/23
24/08/13

Your own mail server with Virtualmin – Low End Box

Which should ask you for your sudo password and if you’re sure you’re running the installer on a suitable
system:

Next, it’s going to install a bunch of packages. Just sit back and relax. Get a cup of coffee or a beer. It could
take anywhere from 5 tot 15 minutes (on average).
Once that is done, open a web browser and go to either your IP address or domain name on port 10000 with
‘https’ prepended:
https://192.0.2.1:10000
https://leb001.example.net:10000/
This should ask you to log in:

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

2/23
24/08/13

Your own mail server with Virtualmin – Low End Box

Use the username and password of your sudo user to log in. Once logged in, the post-installation wizard
should appear:

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

3/23
24/08/13

Your own mail server with Virtualmin – Low End Box

Click ‘Next’. You will be asked whether to preload the virtualmin libraries or not and whether you want to run
the email domain lookup server. I would recommend against the former, except if you have plenty of RAM. I
would recommend turning on the domain lookup server for faster mail processing.

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

4/23
24/08/13

Your own mail server with Virtualmin – Low End Box

In the next step you can enable the ClamAV mail scanner server. I would really recommend enabling this.

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

5/23
24/08/13

Your own mail server with Virtualmin – Low End Box

The same applies to the SpamAssassin server filter in the next step. This one is easier on the memory than the
ClamAV server or domain lookup server, so even in you choose not to enable those two, you should enable
this one.

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

6/23
24/08/13

Your own mail server with Virtualmin – Low End Box

We don’t need MySQL or PostgreSQL running and sucking up memory. So disable both.

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

7/23
24/08/13

Your own mail server with Virtualmin – Low End Box

We don’t need bind, so tick the box to skip the resolvability check and leave the other fields the way they are.

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

8/23
24/08/13

Your own mail server with Virtualmin – Low End Box

Passwords should never, ever be stored in plain text, so only store hashed passwords.

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

9/23
24/08/13

Your own mail server with Virtualmin – Low End Box

Click ‘Next’ to go to the ‘System Information’ screen.

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

10/23
24/08/13

Your own mail server with Virtualmin – Low End Box

Which should look like this (don’t mind the yellow warning, we’ll get to that):

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

11/23
24/08/13

Your own mail server with Virtualmin – Low End Box

You’ve now successfully installed Virtualmin! Let’s configure it and create a mailbox.

Configuring services and adding your first mailbox
First, we need to configure some services. Go to ‘System Settings’ in the left menu and then to ‘Features and
Plugins’. This is where we disable all services that are not related to serving e-mail. Untick all the boxes I have
unticked in this screenshot:

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

12/23
24/08/13

Your own mail server with Virtualmin – Low End Box

When you click ‘Save’ you should return to the ‘System Information’ screen.

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

13/23
24/08/13

Your own mail server with Virtualmin – Low End Box

In the left menu, under ‘System Settings’, click ‘Re-Check Configuration’. This should check several things of
your installation and display an error is something is wrong.

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

14/23
24/08/13

Your own mail server with Virtualmin – Low End Box

Let’s create a Virtual Server, so we can add a mailbox. Click ‘Create Virtual Server’ in the left menu:

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

15/23
24/08/13

Your own mail server with Virtualmin – Low End Box

Fill out the domain name for the server, which is the domain name you wish to receive e-mail for. Also pick a
strong password. Click ‘Create Server’ to actually create the server:

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

16/23
24/08/13

Your own mail server with Virtualmin – Low End Box

Once your virtual server is up, let’s create a mailbox. Click ‘Edit Users’ in the left menu, which should open
the user list:

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

17/23
24/08/13

Your own mail server with Virtualmin – Low End Box

Clicking ‘Add a user to this server’ opens the screen to create a new user. Because we disabled several
features before, the user you’re going to create will only have an e-mail account. So, basically, you’re creating
an e-mail account.

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

18/23
24/08/13

Your own mail server with Virtualmin – Low End Box

Fill out the e-mail address field, a real name and a strong password. Click ‘Create’ to finish this. You should
be returned to the user overview, where you see your newly-created user including the IMAP/POP3 login.

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

19/23
24/08/13

Your own mail server with Virtualmin – Low End Box

And that’s it! You’ve just created your own e-mail server and your first mailbox!
To add your mailbox to an e-mail client, like Mozilla Thunderbird, your details will be (from the example
above):
Username: john.smith.example
Password: the one you picked
Mail server (IMAP/POP3/SMTP): the domain name/IP of the mail server
TLS is available but the certificate is self-signed, so you should accept the certificate to enable secure
communication with the mail server.
The final step is to point you domain name’s DNS records to your newly created server, if you didn’t already.
If your domain points to the server, point the MX record to your domain. If you’ve used a different domain for
your server, point the MX record to that or the server IP. Once the DNS records have propagated, you
should be receiving e-mail!

Final notes
This is one of the easiest ways to get a mail server running. You can improve your server by using a
commercial SSL certificate (although, there is word those are not save from government eyes either) and install
webmail software. Those are things for a future tutorial, however!
Your mail server also supports IMAP IDLE, which boils down to push for IMAP. This works especially well
lowendbox.com/blog/your-own-mail-server-with-virtualmin/

20/23
24/08/13

Your own mail server with Virtualmin – Low End Box

with K-9 Mail on an Android device or Mozilla Thunderbird (which both support IMAP IDLE). So, no loss
leaving your free e-mail service here!
Up next week: Getting started with OpenVPN (tap)!

7 Comments
1.
jcaleb:
Good tutorial Maarten
August 24, 2013 @ 8:37 am | Reply

Maarten Kossen:
Thanks!
August 24, 2013 @ 8:52 am | Reply
2.
Lucas:
How it safe from ddos and hackers?
August 24, 2013 @ 8:50 am | Reply

Maarten Kossen:
It’s as safe from hackers as most mail servers as long as you keep the software up to date. Using
IPtables to secure your server will definitely help.
To protect the server from a DDOS, I suggest getting a DDOS-protected IP address if your
provider offers those.
August 24, 2013 @ 8:53 am | Reply
3.
DomainBop:
Two security suggestions I would make if you’re using webmin/virtualmin is to change the port from the
default 10000 and install fail2ban because webmin on port 10000 is a favorite target of brute force
attackers.
August 24, 2013 @ 9:08 am | Reply
4.
lowendbox.com/blog/your-own-mail-server-with-virtualmin/

21/23
24/08/13

Your own mail server with Virtualmin – Low End Box

John:
Fantastic tutorial, was looking at how to set up a mail server but looked really difficult! Thanks!
August 24, 2013 @ 9:38 am | Reply
5.
hein:
newbie question, how about inbox rate?
August 24, 2013 @ 9:44 am | Reply

Leave a Reply
Some notes on commenting on LowEndBox:
Do not use LowEndBox for support issues. Go to your hosting provider and issue a ticket there.
Coming here saying "my VPS is down, what do I do?!" will only have your comments removed.
Akismet is used for spam detection. Quoting webhostingtalk.com URL seems to get binned consistently
here, but I do peek into the spam box frequently to publish those comments.
Use < r > . < p e to quote the output from your terminal/console, or consider using a pastebin
pe../r>
service.
Your email address will not be published. Required fields are marked *
Name *
Email *
Website

Comment
You may use these HTML tags and attributes: < h e = " t t e " > < b r t t e " > < c o y
a rf" il=" ab il=" arnm
tte"><><lcqoect=" <ie <oe <e dttm=" <m <><r>
il=" b bokut ie"> ct> cd> dl aeie"> e> i pe
< ct=" <tie <tog
q ie"> srk> srn>
Post Comment

Notify me of followup comments via e-mail

About LowEndBox
lowendbox.com/blog/your-own-mail-server-with-virtualmin/

22/23
24/08/13

Your own mail server with Virtualmin – Low End Box

This website is dedicated for running websites and services on low end dedicated servers/virtual private
servers, where you only need to pay a few dollars a month to get full root access. [More/Contact]
Find

Community
Low End Talk
Low End Wiki

Recent Posts
Your own mail server with Virtualmin on 24 August 2013
Crissic Solutions – $1.64/Month 256MB RAM OpenVZ VPS in Jacksonville on 23 August 2013
XFuse Solutions – $6.99 1.5GB OpenVZ VPS in Buffalo, NY on 22 August 2013
Servarica – $7/Month 1GB Windows XEN HVM or 1.5GB Linux PV in Montreal, Canada on 21
August 2013
UGVPS – $30/6 months 3GB OpenVZ in Los Angeles, Buffalo, Atlanta or Chicago on 20 August
2013
FrapHost – $25/Year 1GB OpenVZ VPS in Las Vegas, Nevada on 20 August 2013
ExpertVM – $40/Year 128MB OpenVZ/KVM in Singapore on 19 August 2013
IPtables: IPv6 and more rules on 17 August 2013
VPS Ace – $9/Year 128mb SSD-Cached in Buffalo, Chicago & Los Angeles on 16 August 2013
Kickstarter Competition (start your own host) Update/Reminder on 15 August 2013
2008-2013 © LowEndBox. Powered by WordPress. Generated in 0.068 seconds. RSS Feed
All date/time in UTC.

lowendbox.com/blog/your-own-mail-server-with-virtualmin/

23/23

More Related Content

What's hot

Intro to advanced web development
Intro to advanced web developmentIntro to advanced web development
Intro to advanced web development
Stevie T
 
BUILDING WEBSITES ON WORDPRESS
BUILDING WEBSITES ON WORDPRESSBUILDING WEBSITES ON WORDPRESS
BUILDING WEBSITES ON WORDPRESS
PRINCE KUMAR
 
Improve WordPress performance with caching and deferred execution of code
Improve WordPress performance with caching and deferred execution of codeImprove WordPress performance with caching and deferred execution of code
Improve WordPress performance with caching and deferred execution of code
Danilo Ercoli
 
WordPress Development Tools and Best Practices
WordPress Development Tools and Best PracticesWordPress Development Tools and Best Practices
WordPress Development Tools and Best PracticesDanilo Ercoli
 
How to create a word press blog and website in 30 minutes even if you have 0 ...
How to create a word press blog and website in 30 minutes even if you have 0 ...How to create a word press blog and website in 30 minutes even if you have 0 ...
How to create a word press blog and website in 30 minutes even if you have 0 ...
Tom Corson-Knowles
 
Fully Automated and Accurate Tumblr to WordPress Switch
Fully Automated and Accurate Tumblr to WordPress SwitchFully Automated and Accurate Tumblr to WordPress Switch
Fully Automated and Accurate Tumblr to WordPress Switch
CMS2CMS
 
Mobile Hybrid Development with WordPress
Mobile Hybrid Development with WordPressMobile Hybrid Development with WordPress
Mobile Hybrid Development with WordPress
Danilo Ercoli
 
Redirect subdomain to webmail
Redirect subdomain to webmailRedirect subdomain to webmail
Redirect subdomain to webmail
Kaviyarasu Pugaz
 
Wordpress installation
Wordpress installationWordpress installation
Wordpress installation
Webtech Learning
 
Willing Webcam manual
Willing Webcam manualWilling Webcam manual
Willing Webcam manual
wwwilling
 
Show Me The Cache!
Show Me The Cache!Show Me The Cache!
Show Me The Cache!
Andy Melichar
 
Please, dont touch the slow parts v.3.6 @webtechcon
Please, dont touch the slow parts v.3.6 @webtechconPlease, dont touch the slow parts v.3.6 @webtechcon
Please, dont touch the slow parts v.3.6 @webtechconFrancesco Fullone
 
Editing Wordpress in Dreamweaver
Editing Wordpress in DreamweaverEditing Wordpress in Dreamweaver
Editing Wordpress in DreamweaverGarin Kilpatrick
 

What's hot (14)

Magento Optimization Whitepaper
Magento Optimization WhitepaperMagento Optimization Whitepaper
Magento Optimization Whitepaper
 
Intro to advanced web development
Intro to advanced web developmentIntro to advanced web development
Intro to advanced web development
 
BUILDING WEBSITES ON WORDPRESS
BUILDING WEBSITES ON WORDPRESSBUILDING WEBSITES ON WORDPRESS
BUILDING WEBSITES ON WORDPRESS
 
Improve WordPress performance with caching and deferred execution of code
Improve WordPress performance with caching and deferred execution of codeImprove WordPress performance with caching and deferred execution of code
Improve WordPress performance with caching and deferred execution of code
 
WordPress Development Tools and Best Practices
WordPress Development Tools and Best PracticesWordPress Development Tools and Best Practices
WordPress Development Tools and Best Practices
 
How to create a word press blog and website in 30 minutes even if you have 0 ...
How to create a word press blog and website in 30 minutes even if you have 0 ...How to create a word press blog and website in 30 minutes even if you have 0 ...
How to create a word press blog and website in 30 minutes even if you have 0 ...
 
Fully Automated and Accurate Tumblr to WordPress Switch
Fully Automated and Accurate Tumblr to WordPress SwitchFully Automated and Accurate Tumblr to WordPress Switch
Fully Automated and Accurate Tumblr to WordPress Switch
 
Mobile Hybrid Development with WordPress
Mobile Hybrid Development with WordPressMobile Hybrid Development with WordPress
Mobile Hybrid Development with WordPress
 
Redirect subdomain to webmail
Redirect subdomain to webmailRedirect subdomain to webmail
Redirect subdomain to webmail
 
Wordpress installation
Wordpress installationWordpress installation
Wordpress installation
 
Willing Webcam manual
Willing Webcam manualWilling Webcam manual
Willing Webcam manual
 
Show Me The Cache!
Show Me The Cache!Show Me The Cache!
Show Me The Cache!
 
Please, dont touch the slow parts v.3.6 @webtechcon
Please, dont touch the slow parts v.3.6 @webtechconPlease, dont touch the slow parts v.3.6 @webtechcon
Please, dont touch the slow parts v.3.6 @webtechcon
 
Editing Wordpress in Dreamweaver
Editing Wordpress in DreamweaverEditing Wordpress in Dreamweaver
Editing Wordpress in Dreamweaver
 

Similar to Your own mail server with virtualmin – low end box

Build your own secure mail server on the cloud using Amazon Web Services
Build your own secure mail server on the cloud using Amazon Web ServicesBuild your own secure mail server on the cloud using Amazon Web Services
Build your own secure mail server on the cloud using Amazon Web Servicesponukumatla joel nishanth
 
Installation of wampserver
Installation of wampserverInstallation of wampserver
Installation of wampserver
Smita Agarwal
 
Step by step_linux_guide
Step by step_linux_guideStep by step_linux_guide
Step by step_linux_guide
vinod31dec
 
4 sg 2.5.1_installation
4 sg 2.5.1_installation4 sg 2.5.1_installation
4 sg 2.5.1_installationRevolucion
 
Mail
MailMail
Mail
Md Shihab
 
Important Terms that are Encountered Frequently by cPanel Users
Important Terms that are Encountered Frequently by cPanel UsersImportant Terms that are Encountered Frequently by cPanel Users
Important Terms that are Encountered Frequently by cPanel Users
HTS Hosting
 
Fighting XMPP abuse and spam with ejabberd - ejabberd Workshop #1
Fighting XMPP abuse and spam with ejabberd - ejabberd Workshop #1Fighting XMPP abuse and spam with ejabberd - ejabberd Workshop #1
Fighting XMPP abuse and spam with ejabberd - ejabberd Workshop #1
Mickaël Rémond
 
How to simplify Email oriented workflow with - Visendo SMTP Extender
How to simplify Email oriented workflow with - Visendo SMTP Extender How to simplify Email oriented workflow with - Visendo SMTP Extender
How to simplify Email oriented workflow with - Visendo SMTP Extender
Johannes Cosmin dumitru
 
Web hosting and concepts of SEO UNIT 5
Web hosting and concepts of SEO UNIT 5Web hosting and concepts of SEO UNIT 5
Web hosting and concepts of SEO UNIT 5
SURBHI SAROHA
 
Ways to Prevent Email Abuse
Ways to Prevent Email AbuseWays to Prevent Email Abuse
Ways to Prevent Email Abuse
HTS Hosting
 
Word press multisite network how to install &amp; setup it
Word press multisite network how to install &amp; setup itWord press multisite network how to install &amp; setup it
Word press multisite network how to install &amp; setup it
Temok IT Services
 
NT341 Mail Server Integration
NT341 Mail Server IntegrationNT341 Mail Server Integration
NT341 Mail Server IntegrationRyan Ellingson
 
Getting Started With Dedicated
Getting Started With Dedicated Getting Started With Dedicated
Getting Started With Dedicated webhostingguy
 
StoreGrid 2.5.1 Installation Guide
StoreGrid 2.5.1 Installation GuideStoreGrid 2.5.1 Installation Guide
StoreGrid 2.5.1 Installation Guide
Revolucion
 
Install iRedMail on Red Hat Enterprise Linux, CentOS
Install iRedMail on Red Hat Enterprise Linux, CentOSInstall iRedMail on Red Hat Enterprise Linux, CentOS
Install iRedMail on Red Hat Enterprise Linux, CentOS
InfoExcavator
 
Install iRedMail on Red Hat Enterprise Linux, CentOS
Install iRedMail on Red Hat Enterprise Linux, CentOSInstall iRedMail on Red Hat Enterprise Linux, CentOS
Install iRedMail on Red Hat Enterprise Linux, CentOS
Md Meherab Hossen
 
Linux corporate-training-in-mumbai
Linux corporate-training-in-mumbaiLinux corporate-training-in-mumbai
Linux corporate-training-in-mumbai
Unmesh Baile
 
pop3-imap.ppt
pop3-imap.pptpop3-imap.ppt
pop3-imap.ppt
BilalYounssi
 
pop3-imap.ppt
pop3-imap.pptpop3-imap.ppt
pop3-imap.ppt
JohnMarshall898974
 
ClusterDesktop how-to use the site
ClusterDesktop how-to use the siteClusterDesktop how-to use the site
ClusterDesktop how-to use the site
Emil Parashkevov
 

Similar to Your own mail server with virtualmin – low end box (20)

Build your own secure mail server on the cloud using Amazon Web Services
Build your own secure mail server on the cloud using Amazon Web ServicesBuild your own secure mail server on the cloud using Amazon Web Services
Build your own secure mail server on the cloud using Amazon Web Services
 
Installation of wampserver
Installation of wampserverInstallation of wampserver
Installation of wampserver
 
Step by step_linux_guide
Step by step_linux_guideStep by step_linux_guide
Step by step_linux_guide
 
4 sg 2.5.1_installation
4 sg 2.5.1_installation4 sg 2.5.1_installation
4 sg 2.5.1_installation
 
Mail
MailMail
Mail
 
Important Terms that are Encountered Frequently by cPanel Users
Important Terms that are Encountered Frequently by cPanel UsersImportant Terms that are Encountered Frequently by cPanel Users
Important Terms that are Encountered Frequently by cPanel Users
 
Fighting XMPP abuse and spam with ejabberd - ejabberd Workshop #1
Fighting XMPP abuse and spam with ejabberd - ejabberd Workshop #1Fighting XMPP abuse and spam with ejabberd - ejabberd Workshop #1
Fighting XMPP abuse and spam with ejabberd - ejabberd Workshop #1
 
How to simplify Email oriented workflow with - Visendo SMTP Extender
How to simplify Email oriented workflow with - Visendo SMTP Extender How to simplify Email oriented workflow with - Visendo SMTP Extender
How to simplify Email oriented workflow with - Visendo SMTP Extender
 
Web hosting and concepts of SEO UNIT 5
Web hosting and concepts of SEO UNIT 5Web hosting and concepts of SEO UNIT 5
Web hosting and concepts of SEO UNIT 5
 
Ways to Prevent Email Abuse
Ways to Prevent Email AbuseWays to Prevent Email Abuse
Ways to Prevent Email Abuse
 
Word press multisite network how to install &amp; setup it
Word press multisite network how to install &amp; setup itWord press multisite network how to install &amp; setup it
Word press multisite network how to install &amp; setup it
 
NT341 Mail Server Integration
NT341 Mail Server IntegrationNT341 Mail Server Integration
NT341 Mail Server Integration
 
Getting Started With Dedicated
Getting Started With Dedicated Getting Started With Dedicated
Getting Started With Dedicated
 
StoreGrid 2.5.1 Installation Guide
StoreGrid 2.5.1 Installation GuideStoreGrid 2.5.1 Installation Guide
StoreGrid 2.5.1 Installation Guide
 
Install iRedMail on Red Hat Enterprise Linux, CentOS
Install iRedMail on Red Hat Enterprise Linux, CentOSInstall iRedMail on Red Hat Enterprise Linux, CentOS
Install iRedMail on Red Hat Enterprise Linux, CentOS
 
Install iRedMail on Red Hat Enterprise Linux, CentOS
Install iRedMail on Red Hat Enterprise Linux, CentOSInstall iRedMail on Red Hat Enterprise Linux, CentOS
Install iRedMail on Red Hat Enterprise Linux, CentOS
 
Linux corporate-training-in-mumbai
Linux corporate-training-in-mumbaiLinux corporate-training-in-mumbai
Linux corporate-training-in-mumbai
 
pop3-imap.ppt
pop3-imap.pptpop3-imap.ppt
pop3-imap.ppt
 
pop3-imap.ppt
pop3-imap.pptpop3-imap.ppt
pop3-imap.ppt
 
ClusterDesktop how-to use the site
ClusterDesktop how-to use the siteClusterDesktop how-to use the site
ClusterDesktop how-to use the site
 

More from leonirlopes

ISO/IEC 38500 - IT Governance Standard
ISO/IEC 38500 - IT Governance StandardISO/IEC 38500 - IT Governance Standard
ISO/IEC 38500 - IT Governance Standard
leonirlopes
 
CMMI - Capability Maturity Model Integration
CMMI - Capability Maturity Model IntegrationCMMI - Capability Maturity Model Integration
CMMI - Capability Maturity Model Integration
leonirlopes
 
MPS.BR
MPS.BRMPS.BR
MPS.BR
leonirlopes
 
Modelos de Governança de TI: COBIT e ITIL
Modelos de Governança de TI: COBIT e ITILModelos de Governança de TI: COBIT e ITIL
Modelos de Governança de TI: COBIT e ITIL
leonirlopes
 
Operating manual (deh 6450bt - deh-5450sd)-eng-esp-por
Operating manual (deh 6450bt - deh-5450sd)-eng-esp-porOperating manual (deh 6450bt - deh-5450sd)-eng-esp-por
Operating manual (deh 6450bt - deh-5450sd)-eng-esp-porleonirlopes
 
Torrentflux baixando propagando torrents e arquivos
Torrentflux  baixando propagando torrents e arquivosTorrentflux  baixando propagando torrents e arquivos
Torrentflux baixando propagando torrents e arquivosleonirlopes
 
Mfl59166626 rev04
Mfl59166626 rev04Mfl59166626 rev04
Mfl59166626 rev04leonirlopes
 
Ht c350-br-por-0316
Ht c350-br-por-0316Ht c350-br-por-0316
Ht c350-br-por-0316leonirlopes
 
Java como programar.volume_4_john_lennonn
Java como programar.volume_4_john_lennonnJava como programar.volume_4_john_lennonn
Java como programar.volume_4_john_lennonnleonirlopes
 
java paradigma oo
java paradigma oojava paradigma oo
java paradigma ooleonirlopes
 
Como burlar internet da vivo on 200 mb no android
Como burlar internet da vivo on 200 mb no androidComo burlar internet da vivo on 200 mb no android
Como burlar internet da vivo on 200 mb no androidleonirlopes
 
Como ganhar na loteria usando sistemas
Como ganhar na loteria usando sistemasComo ganhar na loteria usando sistemas
Como ganhar na loteria usando sistemasleonirlopes
 

More from leonirlopes (12)

ISO/IEC 38500 - IT Governance Standard
ISO/IEC 38500 - IT Governance StandardISO/IEC 38500 - IT Governance Standard
ISO/IEC 38500 - IT Governance Standard
 
CMMI - Capability Maturity Model Integration
CMMI - Capability Maturity Model IntegrationCMMI - Capability Maturity Model Integration
CMMI - Capability Maturity Model Integration
 
MPS.BR
MPS.BRMPS.BR
MPS.BR
 
Modelos de Governança de TI: COBIT e ITIL
Modelos de Governança de TI: COBIT e ITILModelos de Governança de TI: COBIT e ITIL
Modelos de Governança de TI: COBIT e ITIL
 
Operating manual (deh 6450bt - deh-5450sd)-eng-esp-por
Operating manual (deh 6450bt - deh-5450sd)-eng-esp-porOperating manual (deh 6450bt - deh-5450sd)-eng-esp-por
Operating manual (deh 6450bt - deh-5450sd)-eng-esp-por
 
Torrentflux baixando propagando torrents e arquivos
Torrentflux  baixando propagando torrents e arquivosTorrentflux  baixando propagando torrents e arquivos
Torrentflux baixando propagando torrents e arquivos
 
Mfl59166626 rev04
Mfl59166626 rev04Mfl59166626 rev04
Mfl59166626 rev04
 
Ht c350-br-por-0316
Ht c350-br-por-0316Ht c350-br-por-0316
Ht c350-br-por-0316
 
Java como programar.volume_4_john_lennonn
Java como programar.volume_4_john_lennonnJava como programar.volume_4_john_lennonn
Java como programar.volume_4_john_lennonn
 
java paradigma oo
java paradigma oojava paradigma oo
java paradigma oo
 
Como burlar internet da vivo on 200 mb no android
Como burlar internet da vivo on 200 mb no androidComo burlar internet da vivo on 200 mb no android
Como burlar internet da vivo on 200 mb no android
 
Como ganhar na loteria usando sistemas
Como ganhar na loteria usando sistemasComo ganhar na loteria usando sistemas
Como ganhar na loteria usando sistemas
 

Recently uploaded

Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
Frank van Harmelen
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
OnBoard
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
Paul Groth
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
RTTS
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
UiPathCommunity
 
ODC, Data Fabric and Architecture User Group
ODC, Data Fabric and Architecture User GroupODC, Data Fabric and Architecture User Group
ODC, Data Fabric and Architecture User Group
CatarinaPereira64715
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Inflectra
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
DianaGray10
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
Product School
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
Elena Simperl
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
DianaGray10
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
Alison B. Lowndes
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Thierry Lestable
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
Product School
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
Elena Simperl
 

Recently uploaded (20)

Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 
ODC, Data Fabric and Architecture User Group
ODC, Data Fabric and Architecture User GroupODC, Data Fabric and Architecture User Group
ODC, Data Fabric and Architecture User Group
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
 

Your own mail server with virtualmin – low end box

  • 1. 24/08/13 Your own mail server with Virtualmin – Low End Box LowEndBox Hosting Websites on Bare Minimum VPS/Dedicated Servers Your own mail server with Virtualmin tutorials August 24, 2013 @ 8:34 am, by Maarten Kossen In light of recent events, there’s been a lot of chatter about leaving free e-mail services in favor of self-hosted e-mail. With self-hosted e-mail you have the option to host your e-mail wherever you want it, either on a server at home or on a VPS. There’s plenty of affordable options around to run your own mail server. I would personally recommend a Xen or KVM VPS for this, as with OpenVZ it is really easy for your provider to “snoop” on your e-mail. This is also possible with Xen or KVM, but it usually requires a reboot (which you will probably notice). I’ve used a 512MB Xen VPS for this tutorial. I’ve used “this much” memory because I want to run clamd and SpamAssassin in RAM. The server also has 45GB of disk space, which is more than enough to run a couple of big mailboxes on. You could do with less RAM (though that would increase the CPU load and slow down mail processing) and far less disk space (depending on your needs), but with “my” specs, you’re on the safe side. Installing Virtualmin I’m using Virtualmin in this tutorial. The choice for Virtualmin is quite easy: it’s free, fast, stable and doesn’t invade your system (like, for example, cPanel does). Virtualmin may not have the prettiest UI out there, but it’s clean and it’s effective. You’ll only be using Virtualmin to create and administrate mailboxes. Other than that, you won’t need it. Virtualmin has an open source (GPL) version and a commercial version. The commercial version has some “advanced” features not in the GPL version. I’ll be using the GPL version. This should run on most Linux distributions and FreeBSD. So let’s install Virtualmin. I recommend a clean server for this, to avoid any conflicts. On the server, run: wget http://software.virtualmin.com/gpl/scripts/install.sh Which will get the installer script. Next, make it executable: chmod +x install.sh And finally, run the installer: sudo ./install.sh lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 1/23
  • 2. 24/08/13 Your own mail server with Virtualmin – Low End Box Which should ask you for your sudo password and if you’re sure you’re running the installer on a suitable system: Next, it’s going to install a bunch of packages. Just sit back and relax. Get a cup of coffee or a beer. It could take anywhere from 5 tot 15 minutes (on average). Once that is done, open a web browser and go to either your IP address or domain name on port 10000 with ‘https’ prepended: https://192.0.2.1:10000 https://leb001.example.net:10000/ This should ask you to log in: lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 2/23
  • 3. 24/08/13 Your own mail server with Virtualmin – Low End Box Use the username and password of your sudo user to log in. Once logged in, the post-installation wizard should appear: lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 3/23
  • 4. 24/08/13 Your own mail server with Virtualmin – Low End Box Click ‘Next’. You will be asked whether to preload the virtualmin libraries or not and whether you want to run the email domain lookup server. I would recommend against the former, except if you have plenty of RAM. I would recommend turning on the domain lookup server for faster mail processing. lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 4/23
  • 5. 24/08/13 Your own mail server with Virtualmin – Low End Box In the next step you can enable the ClamAV mail scanner server. I would really recommend enabling this. lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 5/23
  • 6. 24/08/13 Your own mail server with Virtualmin – Low End Box The same applies to the SpamAssassin server filter in the next step. This one is easier on the memory than the ClamAV server or domain lookup server, so even in you choose not to enable those two, you should enable this one. lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 6/23
  • 7. 24/08/13 Your own mail server with Virtualmin – Low End Box We don’t need MySQL or PostgreSQL running and sucking up memory. So disable both. lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 7/23
  • 8. 24/08/13 Your own mail server with Virtualmin – Low End Box We don’t need bind, so tick the box to skip the resolvability check and leave the other fields the way they are. lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 8/23
  • 9. 24/08/13 Your own mail server with Virtualmin – Low End Box Passwords should never, ever be stored in plain text, so only store hashed passwords. lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 9/23
  • 10. 24/08/13 Your own mail server with Virtualmin – Low End Box Click ‘Next’ to go to the ‘System Information’ screen. lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 10/23
  • 11. 24/08/13 Your own mail server with Virtualmin – Low End Box Which should look like this (don’t mind the yellow warning, we’ll get to that): lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 11/23
  • 12. 24/08/13 Your own mail server with Virtualmin – Low End Box You’ve now successfully installed Virtualmin! Let’s configure it and create a mailbox. Configuring services and adding your first mailbox First, we need to configure some services. Go to ‘System Settings’ in the left menu and then to ‘Features and Plugins’. This is where we disable all services that are not related to serving e-mail. Untick all the boxes I have unticked in this screenshot: lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 12/23
  • 13. 24/08/13 Your own mail server with Virtualmin – Low End Box When you click ‘Save’ you should return to the ‘System Information’ screen. lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 13/23
  • 14. 24/08/13 Your own mail server with Virtualmin – Low End Box In the left menu, under ‘System Settings’, click ‘Re-Check Configuration’. This should check several things of your installation and display an error is something is wrong. lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 14/23
  • 15. 24/08/13 Your own mail server with Virtualmin – Low End Box Let’s create a Virtual Server, so we can add a mailbox. Click ‘Create Virtual Server’ in the left menu: lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 15/23
  • 16. 24/08/13 Your own mail server with Virtualmin – Low End Box Fill out the domain name for the server, which is the domain name you wish to receive e-mail for. Also pick a strong password. Click ‘Create Server’ to actually create the server: lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 16/23
  • 17. 24/08/13 Your own mail server with Virtualmin – Low End Box Once your virtual server is up, let’s create a mailbox. Click ‘Edit Users’ in the left menu, which should open the user list: lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 17/23
  • 18. 24/08/13 Your own mail server with Virtualmin – Low End Box Clicking ‘Add a user to this server’ opens the screen to create a new user. Because we disabled several features before, the user you’re going to create will only have an e-mail account. So, basically, you’re creating an e-mail account. lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 18/23
  • 19. 24/08/13 Your own mail server with Virtualmin – Low End Box Fill out the e-mail address field, a real name and a strong password. Click ‘Create’ to finish this. You should be returned to the user overview, where you see your newly-created user including the IMAP/POP3 login. lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 19/23
  • 20. 24/08/13 Your own mail server with Virtualmin – Low End Box And that’s it! You’ve just created your own e-mail server and your first mailbox! To add your mailbox to an e-mail client, like Mozilla Thunderbird, your details will be (from the example above): Username: john.smith.example Password: the one you picked Mail server (IMAP/POP3/SMTP): the domain name/IP of the mail server TLS is available but the certificate is self-signed, so you should accept the certificate to enable secure communication with the mail server. The final step is to point you domain name’s DNS records to your newly created server, if you didn’t already. If your domain points to the server, point the MX record to your domain. If you’ve used a different domain for your server, point the MX record to that or the server IP. Once the DNS records have propagated, you should be receiving e-mail! Final notes This is one of the easiest ways to get a mail server running. You can improve your server by using a commercial SSL certificate (although, there is word those are not save from government eyes either) and install webmail software. Those are things for a future tutorial, however! Your mail server also supports IMAP IDLE, which boils down to push for IMAP. This works especially well lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 20/23
  • 21. 24/08/13 Your own mail server with Virtualmin – Low End Box with K-9 Mail on an Android device or Mozilla Thunderbird (which both support IMAP IDLE). So, no loss leaving your free e-mail service here! Up next week: Getting started with OpenVPN (tap)! 7 Comments 1. jcaleb: Good tutorial Maarten August 24, 2013 @ 8:37 am | Reply Maarten Kossen: Thanks! August 24, 2013 @ 8:52 am | Reply 2. Lucas: How it safe from ddos and hackers? August 24, 2013 @ 8:50 am | Reply Maarten Kossen: It’s as safe from hackers as most mail servers as long as you keep the software up to date. Using IPtables to secure your server will definitely help. To protect the server from a DDOS, I suggest getting a DDOS-protected IP address if your provider offers those. August 24, 2013 @ 8:53 am | Reply 3. DomainBop: Two security suggestions I would make if you’re using webmin/virtualmin is to change the port from the default 10000 and install fail2ban because webmin on port 10000 is a favorite target of brute force attackers. August 24, 2013 @ 9:08 am | Reply 4. lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 21/23
  • 22. 24/08/13 Your own mail server with Virtualmin – Low End Box John: Fantastic tutorial, was looking at how to set up a mail server but looked really difficult! Thanks! August 24, 2013 @ 9:38 am | Reply 5. hein: newbie question, how about inbox rate? August 24, 2013 @ 9:44 am | Reply Leave a Reply Some notes on commenting on LowEndBox: Do not use LowEndBox for support issues. Go to your hosting provider and issue a ticket there. Coming here saying "my VPS is down, what do I do?!" will only have your comments removed. Akismet is used for spam detection. Quoting webhostingtalk.com URL seems to get binned consistently here, but I do peek into the spam box frequently to publish those comments. Use < r > . < p e to quote the output from your terminal/console, or consider using a pastebin pe../r> service. Your email address will not be published. Required fields are marked * Name * Email * Website Comment You may use these HTML tags and attributes: < h e = " t t e " > < b r t t e " > < c o y a rf" il=" ab il=" arnm tte"><><lcqoect=" <ie <oe <e dttm=" <m <><r> il=" b bokut ie"> ct> cd> dl aeie"> e> i pe < ct=" <tie <tog q ie"> srk> srn> Post Comment Notify me of followup comments via e-mail About LowEndBox lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 22/23
  • 23. 24/08/13 Your own mail server with Virtualmin – Low End Box This website is dedicated for running websites and services on low end dedicated servers/virtual private servers, where you only need to pay a few dollars a month to get full root access. [More/Contact] Find Community Low End Talk Low End Wiki Recent Posts Your own mail server with Virtualmin on 24 August 2013 Crissic Solutions – $1.64/Month 256MB RAM OpenVZ VPS in Jacksonville on 23 August 2013 XFuse Solutions – $6.99 1.5GB OpenVZ VPS in Buffalo, NY on 22 August 2013 Servarica – $7/Month 1GB Windows XEN HVM or 1.5GB Linux PV in Montreal, Canada on 21 August 2013 UGVPS – $30/6 months 3GB OpenVZ in Los Angeles, Buffalo, Atlanta or Chicago on 20 August 2013 FrapHost – $25/Year 1GB OpenVZ VPS in Las Vegas, Nevada on 20 August 2013 ExpertVM – $40/Year 128MB OpenVZ/KVM in Singapore on 19 August 2013 IPtables: IPv6 and more rules on 17 August 2013 VPS Ace – $9/Year 128mb SSD-Cached in Buffalo, Chicago & Los Angeles on 16 August 2013 Kickstarter Competition (start your own host) Update/Reminder on 15 August 2013 2008-2013 © LowEndBox. Powered by WordPress. Generated in 0.068 seconds. RSS Feed All date/time in UTC. lowendbox.com/blog/your-own-mail-server-with-virtualmin/ 23/23