<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://deltanine.net/mw/index.php?action=history&amp;feed=atom&amp;title=Ubuntu_Webserver_and_Mail_Server_Mk_IV</id>
	<title>Ubuntu Webserver and Mail Server Mk IV - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://deltanine.net/mw/index.php?action=history&amp;feed=atom&amp;title=Ubuntu_Webserver_and_Mail_Server_Mk_IV"/>
	<link rel="alternate" type="text/html" href="https://deltanine.net/mw/index.php?title=Ubuntu_Webserver_and_Mail_Server_Mk_IV&amp;action=history"/>
	<updated>2026-09-13T17:44:38Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.32.1</generator>
	<entry>
		<id>https://deltanine.net/mw/index.php?title=Ubuntu_Webserver_and_Mail_Server_Mk_IV&amp;diff=957&amp;oldid=prev</id>
		<title>Chris: 1 revision</title>
		<link rel="alternate" type="text/html" href="https://deltanine.net/mw/index.php?title=Ubuntu_Webserver_and_Mail_Server_Mk_IV&amp;diff=957&amp;oldid=prev"/>
		<updated>2013-07-25T08:45:25Z</updated>

		<summary type="html">&lt;p&gt;1 revision&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;Revision as of 08:45, 25 July 2013&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Chris</name></author>
		
	</entry>
	<entry>
		<id>https://deltanine.net/mw/index.php?title=Ubuntu_Webserver_and_Mail_Server_Mk_IV&amp;diff=956&amp;oldid=prev</id>
		<title>Chris at 23:11, 17 May 2011</title>
		<link rel="alternate" type="text/html" href="https://deltanine.net/mw/index.php?title=Ubuntu_Webserver_and_Mail_Server_Mk_IV&amp;diff=956&amp;oldid=prev"/>
		<updated>2011-05-17T23:11:38Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Install open vmware tools from synaptic==&lt;br /&gt;
&lt;br /&gt;
==Install Email Aggregator==&lt;br /&gt;
As I understand it, Fetchmail ONLY gets emails from your external accounts - it doesn't send them on itself, it then uses Postfix to pass them to Dovecot. &lt;br /&gt;
===Install Dovecot, Postfix, Fetchmail===&lt;br /&gt;
#Install from Synaptic (there's apparently a problem with installing postfix with aptitude&lt;br /&gt;
##ssh&lt;br /&gt;
##dovecot-postfix&lt;br /&gt;
##fetchmailconf&lt;br /&gt;
#Choose Postfix as Local Only&lt;br /&gt;
===Configure Dovecot===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo gedit /etc/dovecot/dovecot-postfix.conf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Preferred place to store mail- Mail directory under home, for example: home=/var/vmail/domain/user/ mail=/var/vmail/domain/user/mail/ so modify&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#mail_location = maildir:~/Maildir&lt;br /&gt;
mail_location = maildir:/var/mail/%u/Maildir&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
===Generate SSL certificate===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo openssl req -new -x509 -nodes -out /etc/ssl/certs/dovecot.pem -keyout /etc/ssl/private/dovecot.pem -days 5000&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
===Add Users===&lt;br /&gt;
Add users to system users ie System|Administration|Users and Groups. Create a  user for each email address.&lt;br /&gt;
===Add Email addresses to Fetchmail===&lt;br /&gt;
#&amp;lt;pre&amp;gt;&lt;br /&gt;
#:fetchmailconf&lt;br /&gt;
#:&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Configure&lt;br /&gt;
#Expert Mode&lt;br /&gt;
#Add new server (use same as profile) eg amorangid9. Press enter&lt;br /&gt;
#Enter True name of amorangid9 eg deltanine.net&lt;br /&gt;
#Enter new user eg amorangi@deltanine.net, press enter&lt;br /&gt;
#Enter password, and change local name eg amorangid9&lt;br /&gt;
#Click OK on all the windows to save&lt;br /&gt;
===Port Forwarding===&lt;br /&gt;
Make sure you forward port 993 to the server&lt;br /&gt;
===Add Fetchmail to Startup===&lt;br /&gt;
To run fetchmail as a daemon add &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
fetchmail -d 300&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
where 300 is number of seconds between checks.&lt;br /&gt;
&lt;br /&gt;
==LAMP and web software==&lt;br /&gt;
===Install packages===&lt;br /&gt;
*apache2&lt;br /&gt;
*php5&lt;br /&gt;
*php5-gd&lt;br /&gt;
*php5-mysql&lt;br /&gt;
*php-pear&lt;br /&gt;
*phpmyadmin&lt;br /&gt;
*mysql-server&lt;br /&gt;
*mysql-admin&lt;br /&gt;
*cacti&lt;br /&gt;
*mediawiki&lt;br /&gt;
====PHP====&lt;br /&gt;
Edit php.ini to increase memory_limit, max_execution_time, post_max_size, upload_max_filesize&lt;br /&gt;
====Mediawiki====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo gedit /etc/mediawiki/apache.conf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Enable MediaWiki by editing the following file and remove the '#' from the third line so that it reads 'Alias /mediawiki /var/lib/mediawiki&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
		
	</entry>
</feed>