Support
- Advanced Backup
- Client Side
- Cloud Enterprise
- ColdFusion
- Control Panel
- cPanel
- Customer Portal
- DNS Information
- Dedicated Servers
- DirectAdmin
- Domain Name
- dotDefender
- Dreamweaver
- Email
- Headers
- Configure iPhone for Email Accounts
- Mac Mail Setup
- Mail Clients
- Netscape Communicator
- Not Sending
- Outlook
- Pop3
- Smtpauthentication
- Spam Policy
- SPF Records
- Spoofing
- Telnet
- Webmail
- Change the number of emails stored on your iPhone
- Create an Email Signature in IncrediMail
- Create an Email Signature in Opera Mail
- Create an Email Signature in Thunderbird
- Adjust Postini Premium Spam Filtering Filter Settings
- Change the default Macmail account for OS X
- Configure iPhone for IMAP email accounts
- Configure iPhone for POP email accounts
- Create Filters in Outlook Express
- Change email ports on an iPhone
- Create an Email Signature in Mac Mail
- Set up Auto Responder in IncrediMail
- Set up your iPhone Email Signature
- Remove Unused SMTP Servers in Mac OS X
- Use Connection Doctor to Diagnose Mac OS X Mail problems
- Set up Auto Responder in Thunderbird
- Deliver quarantined messages in Postini
- Add Email Aliases to Postini
- Change Outgoing Email Port in Mac Mail
- Explanation of Bounceback or Email Error Messages
- Create a Catch-all Email Address
- Create Email Filters in Mac OS X Mail
- Check How Much Disk Space Email is Using
- Set up Email Account in Entourage
- Generate an SPF Record
- Recover Deleted Emails Via Outlook Web Access
- Send Email via Pear Mail for Linux
- View Email Header Information
- Set up Email Account in Opera Mail
- Configure Mac OS X Mail
- Back up Email with Mail for OS X
- Set up Microsoft Outlook 2007 for IMAP Email
- Synchronize Sent Items in Microsoft Outlook with IMAP
- Set up POP3 in IncrediMail
- Leave Email on Mail Server with Entourage
- Leave Email on Mail Server with Mac Mail
- Leave Email on Mail Server with Outlook 2007
- Set up POP3 in Opera Mail
- Import Contacts from Excel or CSV into Outlook
- Set up POP3 in Sea Monkey Mail
- Set up IMAP and POP3 on Droid
- Outlook Error Codes
- Winmail.dat File Attachments
- Set up SmarterMail Email on the iPad
- Unable to Send Mail in Outlook
- Unable to send email through Outlook after installing Norton AntiVirus
- Spam Messages from Your Own Address
- Recover Deleted Items in Outlook 2007
- Creating an Email Signature in Outlook
- Set up outlook to use more than one profile
- Create an Auto Responder in Outlook 2007
- Setting up the K9 Email Client on Android
- Add POP Email Account in Microsoft Outlook 2011 for Mac OS X
- Set up IMAP email on Windows Phone 7
- Set up POP3 mail on Windows Phone 7
- Email Signatures in Outlook 2011 for Mac OS X
- Add IMAP Email Account in Microsoft Outlook 2011 for Mac OS X
- Configure Windows Live Mail for Email
- Configure Junk Email Filtering in Outlook 2011 for Mac
- Configure Email Rules for Outlook 2011
- Clearing Autocomplete Entries in Outlook
- Clear Outlook Filters
- Email Settings for Palm Pre and Pixi
- Change Outlook SMTP Port
- Adding an SSL Cerificate to Dovecot
- Configure Android for POP email accounts
- Configure a Blackberry to Access a SmarterMail Account
- Configure Android for IMAP Email Accounts
- Determining if an E-mail Address is an Alias or User in Exchange Server 2007
- FileCatalyst
- Front Page
- FTP
- General Information
- Hosted Exchange & SharePoint
- IIS6
- IIS7
- Juniper Netscreen Firewalls
- Linux
- List Server
- MIVA Merchant
- MySQL
- Patching / Server Updates
- phpMyAdmin
- Plesk
- Policies and Procedures
- Premium Spam Filtering
- Programming
- Ruby on Rails
- Search Engine Submission
- SharePoint 3
- SharePoint 2010
- SiteDesigner
- SmarterMail 3
- SmarterMail 4
- SmarterMail 5
- SmarterMail 6
- SmarterMail 7
- SmarterStats
- SmarterTrack
- SQL Server
- Secure Socket Layer (SSL)
- Uploading Your Website
- Video Tutorials
- Windows Server 2003
- Windows Server 2008
- Web Design
- WordPress
- Advanced Monitoring
- MediaWiki
- Enkompass
- Microsoft Outlook 2010
- Android
- Outlook Web Access
- Critical Availability Service
- NAS Data Transfer
- Customer Portal Demos
- Joomla
- Moodle
- Cloud Dedicated
- Gallery CMS
- phpBB
- Standard Monitoring
- Righteous Restore
- NAS (Network Attached Storage)
- Networking
- SmarterMail 8
- PCI Security Scan
- LinkTiger
- Windows Cloud VPS
- Linux Cloud VPS
- Linux VPS
- Windows VPS
- Hyper V
- ENSIM
- Alert Logic
- Webmin
- e107
- Vbulletin
- VPN
- Visual Vault
- Mozilla Thunderbird
- PyroCMS
- Active Directory
- Vmware Related
- Drupal
Adding an SSL Cerificate to Dovecot
Dovecot, a Linux email server that supports both IMAP and POP3, can easily be made more secure with the addition of an SSL certificate. That said, you can use either a private SSL that was provided by any vendor or by using a Self Signed SSL. This article assumes that you already have your SSL and are ready to apply it to the Dovecot email server.
- To install the SSL, you must first log into your Linux server via SSH / Shell. If you are not sure on how to do this, please follow our article on using SSH for both Windows and Mac .
- You will need to move you obtained SSL certificate to the server using either FTP or SSH, so that Dovecot will see them. The exact location will differ depending on your Operating System and where it places your SSL's. If you are not sure, you can create the directories "/etc/ssl/certs" for the crt file and "/etc/ssl/private" for the key and move your cerificate here.
- Dovecot will need to be configured to use the SSL. To do this you will need to edit the "dovecot.conf" file. Doing a locate command on the file will locate it for you. Once found, open it will any linux editor and change the configuration to look like the following;
- Make sure you save the file after editing it.
- Lastly make sure your email clients are configured to accept SSL for IMAP and POP3 on ports 993 and 995.
Windows - http://www.hosting.com/support/linux/general/sshwindows
Mac - http://www.hosting.com/support/linux/general/sshmac
protocols = imaps pop3s
ssl_disable = no
ssl_cert_file = /etc/ssl/certs/your_crt_file.crt
ssl_key_file = /etc/ssl/private/your_key_file.key
