<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Kommentare zu: Virtuelle Benutzer und Domains Mit Postfix, Courier Und MySQL (Ubuntu 7.10)</title>
	<atom:link href="http://www.howtoforge.de/anleitung/virtuelle-benutzer-und-domains-mit-postfix-courier-und-mysql-ubuntu-710/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.howtoforge.de/anleitung/virtuelle-benutzer-und-domains-mit-postfix-courier-und-mysql-ubuntu-710/</link>
	<description>Linux Howtos und Tutorials</description>
	<lastBuildDate>Mon, 14 May 2012 17:59:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Von: apoc</title>
		<link>http://www.howtoforge.de/anleitung/virtuelle-benutzer-und-domains-mit-postfix-courier-und-mysql-ubuntu-710/comment-page-1/#comment-2889</link>
		<dc:creator>apoc</dc:creator>
		<pubDate>Fri, 13 Feb 2009 05:21:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtoforge.de/howto/virtuelle-benutzer-und-domains-mit-postfix-courier-und-mysql-ubuntu-710/#comment-2889</guid>
		<description>Danke für das super Howto. Ich möchte noch ergänzen das man bei forwardings auch einfach den PRIMARY KEY weglassen kann, dann ist es möglich eine eMail an 2 weitere zu verteilen, haben wir so für info@.. gemacht.

Und noch hier mein kleines Manage Script für die Konsole, kann nicht viel, aber vielleicht findet es ja jemand hilfreich:
http://apoc.sixserv.org/scripts/vmail_manage_script.rb</description>
		<content:encoded><![CDATA[<p>Danke für das super Howto. Ich möchte noch ergänzen das man bei forwardings auch einfach den PRIMARY KEY weglassen kann, dann ist es möglich eine eMail an 2 weitere zu verteilen, haben wir so für info@.. gemacht.</p>
<p>Und noch hier mein kleines Manage Script für die Konsole, kann nicht viel, aber vielleicht findet es ja jemand hilfreich:<br />
<a href="http://apoc.sixserv.org/scripts/vmail_manage_script.rb" rel="nofollow">http://apoc.sixserv.org/scripts/vmail_manage_script.rb</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Aerox95</title>
		<link>http://www.howtoforge.de/anleitung/virtuelle-benutzer-und-domains-mit-postfix-courier-und-mysql-ubuntu-710/comment-page-1/#comment-506</link>
		<dc:creator>Aerox95</dc:creator>
		<pubDate>Sun, 11 May 2008 14:02:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtoforge.de/howto/virtuelle-benutzer-und-domains-mit-postfix-courier-und-mysql-ubuntu-710/#comment-506</guid>
		<description>Nach der Einrichtung nach diesem Tutorial ging das Empfangen von Mails problemlos, aber nicht das versenden.

Lösung war, unter
/var/run/saslauthd/ den Dateien neue Besitzer und Gruppen zu geben:

drwx--x---  2 postfix sasl    100 May 11 15:24 .
drwxr-xr-x 13 root    root    360 May 11 15:24 ..
srwxrwxrwx  1 postfix postfix   0 May 11 15:24 mux
-rw-------  1 postfix postfix   6 May 11 15:24 saslauthd.pid
-rw-------  1 postfix postfix   0 May 11 15:24 mux.accept

Danach gings.</description>
		<content:encoded><![CDATA[<p>Nach der Einrichtung nach diesem Tutorial ging das Empfangen von Mails problemlos, aber nicht das versenden.</p>
<p>Lösung war, unter<br />
/var/run/saslauthd/ den Dateien neue Besitzer und Gruppen zu geben:</p>
<p>drwx--x---  2 postfix sasl    100 May 11 15:24 .<br />
drwxr-xr-x 13 root    root    360 May 11 15:24 ..<br />
srwxrwxrwx  1 postfix postfix   0 May 11 15:24 mux<br />
-rw-------  1 postfix postfix   6 May 11 15:24 saslauthd.pid<br />
-rw-------  1 postfix postfix   0 May 11 15:24 mux.accept</p>
<p>Danach gings.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: planet_fox</title>
		<link>http://www.howtoforge.de/anleitung/virtuelle-benutzer-und-domains-mit-postfix-courier-und-mysql-ubuntu-710/comment-page-1/#comment-180</link>
		<dc:creator>planet_fox</dc:creator>
		<pubDate>Wed, 30 Jan 2008 23:46:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtoforge.de/howto/virtuelle-benutzer-und-domains-mit-postfix-courier-und-mysql-ubuntu-710/#comment-180</guid>
		<description>Ich hatte Probleme bei erstellen der Tabelle CREATE TABLE transport  und CREATE TABLE user auf einem mysql5 server könnte es so Lösen


CREATE TABLE `users` (
  `email` varchar(80) NOT NULL,
  `password` varchar(20) NOT NULL,
  `quota` int(10) default &#039;10485760&#039;,
  PRIMARY KEY  (`email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `forwardings` (
  `source` varchar(80) NOT NULL,
  `destination` text NOT NULL,
  PRIMARY KEY  (`source`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;</description>
		<content:encoded><![CDATA[<p>Ich hatte Probleme bei erstellen der Tabelle CREATE TABLE transport  und CREATE TABLE user auf einem mysql5 server könnte es so Lösen</p>
<p>CREATE TABLE `users` (<br />
  `email` varchar(80) NOT NULL,<br />
  `password` varchar(20) NOT NULL,<br />
  `quota` int(10) default &#8216;10485760&#8242;,<br />
  PRIMARY KEY  (`email`)<br />
) ENGINE=MyISAM DEFAULT CHARSET=utf8;</p>
<p>CREATE TABLE `forwardings` (<br />
  `source` varchar(80) NOT NULL,<br />
  `destination` text NOT NULL,<br />
  PRIMARY KEY  (`source`)<br />
) ENGINE=MyISAM DEFAULT CHARSET=utf8;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: newstube.de</title>
		<link>http://www.howtoforge.de/anleitung/virtuelle-benutzer-und-domains-mit-postfix-courier-und-mysql-ubuntu-710/comment-page-1/#comment-79</link>
		<dc:creator>newstube.de</dc:creator>
		<pubDate>Fri, 30 Nov 2007 16:29:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtoforge.de/howto/virtuelle-benutzer-und-domains-mit-postfix-courier-und-mysql-ubuntu-710/#comment-79</guid>
		<description>&lt;strong&gt;Erstelle Deinen eigenen Mailserver mit Spamfilter unter Ubuntu Linux...&lt;/strong&gt;

Dieses Tutorial beschreibt detailliert die Installation eines Email-Servers unter Ubuntu 7.10....</description>
		<content:encoded><![CDATA[<p><strong>Erstelle Deinen eigenen Mailserver mit Spamfilter unter Ubuntu Linux&#8230;</strong></p>
<p>Dieses Tutorial beschreibt detailliert die Installation eines Email-Servers unter Ubuntu 7.10&#8230;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (User agent is rejected)
Database Caching 6/15 queries in 0.033 seconds using disk

Served from: www.howtoforge.de @ 2012-05-17 16:20:11 -->
