<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>El blog de LandM &#187; Servidores Correo</title>
	<atom:link href="http://blog.landm.net/category/servidores-de-correo/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.landm.net</link>
	<description>System Administrators and IT experts Blog</description>
	<lastBuildDate>Thu, 17 Jun 2010 08:34:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Qpsmtpd FAQ</title>
		<link>http://blog.landm.net/2008/12/qpsmtpd-faq/</link>
		<comments>http://blog.landm.net/2008/12/qpsmtpd-faq/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 11:37:31 +0000</pubDate>
		<dc:creator>lucas</dc:creator>
				<category><![CDATA[qpsmtpd]]></category>
		<category><![CDATA[auth]]></category>
		<category><![CDATA[auth_imap]]></category>
		<category><![CDATA[auth_smtpd]]></category>
		<category><![CDATA[badmailfromto]]></category>
		<category><![CDATA[cdb]]></category>
		<category><![CDATA[message]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[queue]]></category>
		<category><![CDATA[relay client]]></category>
		<category><![CDATA[relayclients]]></category>
		<category><![CDATA[rfc]]></category>
		<category><![CDATA[rhsbl]]></category>
		<category><![CDATA[smtp-forward]]></category>
		<category><![CDATA[validrcptto]]></category>

		<guid isPermaLink="false">http://blog.landm.net/?p=113</guid>
		<description><![CDATA[Life is easier since we use qpsmtpd. So we want to write some little tips about it.

How to queue messages ?

The easiest way to queue messages is use qmail-queue, but if you don&#8217;t have qmail, use your actual mail server in localhost and plugin smtp-forward:
queue/smtp-forward 127.0.0.1 25
Don&#8217;t forget to accept all mail from localhost and [...]]]></description>
			<content:encoded><![CDATA[<p>Life is easier since we use qpsmtpd. So we want to write some little tips about it.</p>
<ul>
<li><em>How to queue messages ?</em></li>
</ul>
<p>The easiest way to queue messages is use qmail-queue, but if you don&#8217;t have qmail, use your actual mail server in localhost and plugin smtp-forward:</p>
<p>queue/smtp-forward 127.0.0.1 25</p>
<p>Don&#8217;t forget to accept all mail from localhost and remove spam and antivirii from your mail server. Now your mail server is acting as <a title="Mail Delivery Agent" href="http://es.wikipedia.org/wiki/Mail_Delivery_Agent">MDA</a>. Let qpsmtpd do all filters (antispam, antivirii, &#8230;).</p>
<ul>
<li><em>Auth plugins</em></li>
</ul>
<p>Try to use standard method like smtpd or imap. It will allow you to change any piece of software whenever without affect your qpsmtpd setup.</p>
<p>auth/auth_imap 127.0.0.1 993</p>
<p>auth/auth_smtpd 127.0.0.1 25</p>
<ul>
<li><em>Check valid rcptto</em></li>
</ul>
<p>Maybe the most important plugin to avoid dictionary attacks. There are scripts to extract valid users from qmail installation: John M. Simpson has some scripts to dump all users to a cdb file. <a title="mkvalidrcptto" href="http://qmail.jms1.net/scripts/mkvalidrcptto.shtml">Link</a></p>
<p>But if you don&#8217;t have qmail you have to do two things in order to have qpsmtpd workproperly:</p>
<ol>
<li>Dump all domains into config/rcpthosts file. Use shell or perl scripts.</li>
<li>Dump all valid users into validrcptto.cdb file. Don&#8217;t forget this file is a <a title="cdb" href="http://cr.yp.to/cdb.html">cdb</a>. There are <a title="cdbmake" href="http://cr.yp.to/cdb/cdbmake.html">tools (like cdbmake)</a> to help you to build a cdb file. Send the valid list to a pipe like this :</li>
</ol>
<p>E.g.: perl getValidUsers.pl |/usr/local/bin/cdbmake-12 /opt/qpsmtpd/config/validrcptto.cdb /opt/qpsmtpd/validrcptto.tmp</p>
<p>And you will have a validrcptto.cdb file. Be careful and don&#8217;t forget mailing lists!!!.</p>
<p>When you have the file generated add this line:</p>
<p>check_validrcptto_cdb /opt/qpsmtpd/config/validrcptto.cdb -</p>
<p>before rcpt_ok plugin</p>
<ul>
<li><em>How to stop mails from an address to a valid users.</em></li>
</ul>
<p>Use this plugin: check_badmailfromto</p>
<p>Create a file (config/badmailfromto) with two columns: from to (separated with 	ab)</p>
<p>That&#8217;s all. Easy as qpsmtpd.</p>
<ul>
<li><em>How to accept mails from a relay client.</em></li>
</ul>
<p>First of all be sure the relay client is a trust client. To accept all mail from the ip, include the ip in config/relayclients file. But the best way to do it is authenticate the client via standard method.</p>
<ul>
<li><em>How to accepts mails from servers that don&#8217;t use rfc.<br />
</em></li>
</ul>
<p>Strange?, not at all. We are in Spain where an official mail server (Seguridad Social) doesn&#8217;t respect rfc. So we had to remove rhsbl plugin from our config.</p>
<ul>
<li><em>How to avoid spamassassin for relay clients.</em></li>
</ul>
<p>Just add this lines in hook_data_post method, after this line:</p>
<p>return (DECLINED) if $transaction-&gt;data_size &gt; 500_000;</p>
<p>The code:</p>
<p>&#8230;</p>
<p>if ( $self-&gt;qp-&gt;connection-&gt;relay_client ) {<br />
# failsafe<br />
$self-&gt;log(LOGALERT, &#8220;Allowing relay client past spamassassin&#8221;);<br />
return (DECLINED);<br />
}</p>
<p>&#8230;</p>
<p>So, if it is a relayed client it doesn&#8217;t send the message to spamassassin daemon.<span id="more-113"></span></p>
<p style="text-align: left;"><!--more--></p>
<p style="text-align: left;">As you can see, qpsmtpd is powerful and easy to configure. Give it a chance. Since we use it we are very confident of our mail service and proud of performance. In another post we will comment some tips about performance.</p>
<p style="text-align: left;">The <a title="qpsmtpd plugins" href="http://wiki.qpsmtpd.org/plugins">plugin page</a> must be your reference when implementing qpsmtpd. There is a lot of information about all you need. Thank <a title="Ask" href="http://www.askbjoernhansen.com/">Ask Bjørn Hansen</a> and the active community very much for your work.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.landm.net/2008/12/qpsmtpd-faq/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>generate pem file for qpsmtpd+ssl 465</title>
		<link>http://blog.landm.net/2008/12/generate-pem-file-for-qpsmtpdssl-465/</link>
		<comments>http://blog.landm.net/2008/12/generate-pem-file-for-qpsmtpdssl-465/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 18:56:42 +0000</pubDate>
		<dc:creator>lucas</dc:creator>
				<category><![CDATA[Servidores Correo]]></category>
		<category><![CDATA[qpsmtpd]]></category>
		<category><![CDATA[generate]]></category>
		<category><![CDATA[openssl]]></category>
		<category><![CDATA[pem file]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[stunnel]]></category>

		<guid isPermaLink="false">http://blog.landm.net/?p=102</guid>
		<description><![CDATA[If you want to use qpsmtpd in port 465 you have to use ssl. The easiest way to do it is following the qpsmtpd instructions: http://wiki.qpsmtpd.org/config:smtps. But you have to create a certificate.
This is the simpliest way to do it:

Use your favorite app manager for your linux distro. Install stunnel.
cd /etc/ssl (in debian) and generate [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to use qpsmtpd in port 465 you have to use ssl. The easiest way to do it is following the qpsmtpd instructions: <a title="smtps" href="http://wiki.qpsmtpd.org/config:smtps" target="_blank">http://wiki.qpsmtpd.org/config:smtps</a>. But you have to create a certificate.</p>
<p>This is the simpliest way to do it:</p>
<ol>
<li>Use your favorite app manager for your linux distro. Install stunnel.</li>
<li>cd /etc/ssl (in debian) and generate pem file.</li>
<li>$openssl req -new -x509 -days 3650 -nodes -config openssl.cnf -out stunnel.pem -keyout stunnel.pem</li>
<li>You have to fill in the next questions: Country Name, State or Province Name, Locality Name, Organization Name, Organizational Unit Name, Common Name and Email Address.</li>
<li>After this step you will have a stunnel.pem file.</li>
<li>$openssl gendh 512 &gt;&gt; stunnel.pem</li>
<li>This generates Diffie-Hellman parameters, and appends them to the pem file.</li>
<li>To check the process and verify the certificate is ok, type: &#8220;openssl x509 -subject -dates -fingerprint -in stunnel.pem&#8221; and check the information.</li>
</ol>
<p>After having generate the pem file, follow the instructions and you will have qpsmtpd runing in 465 port properly.</p>
<p>Remember the stunnel version is 3 or the wrapper for version 3 built in version 4.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.landm.net/2008/12/generate-pem-file-for-qpsmtpdssl-465/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2007: Configuracion de Whitelists</title>
		<link>http://blog.landm.net/2008/08/exchange-2007-whitelists/</link>
		<comments>http://blog.landm.net/2008/08/exchange-2007-whitelists/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 11:51:20 +0000</pubDate>
		<dc:creator>Mario</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Servidores Correo]]></category>
		<category><![CDATA[exchange 2007]]></category>
		<category><![CDATA[whitelist]]></category>

		<guid isPermaLink="false">http://blog.landm.net/?p=81</guid>
		<description><![CDATA[A menudo cuando gestionamos servidores Exchange 2007, nos encontramos ante la situación de que Exchange 2007 se niega a recibir emails de un determinado origen (ya sea dominio o una cuenta especifica) por que no pasa sus políticas de filtrado de emails.
En los casos en el que el origen es confiable, podemos específicamente indicarle a [...]]]></description>
			<content:encoded><![CDATA[<p>A menudo cuando gestionamos servidores Exchange 2007, nos encontramos ante la situación de que Exchange 2007 se niega a recibir emails de un determinado origen (ya sea dominio o una cuenta especifica) por que no pasa sus políticas de filtrado de emails.</p>
<p>En los casos en el que el origen es confiable, podemos específicamente indicarle a Exchange 2007 que queremos que acepte email de un determinado origen de forma incondicional. Para poder llevar a cabo esto prácticamente todos los MTA soportan una funcionalidad que se conoce como whitelists.</p>
<p>En Exchange 2007, una de las formas de acceder a la configuración de las Whitelists es a traves del PowerShell que se instala automáticamente cuando instalamos Exchange 2007. Una vez abierta la shell la gestión de las whitelist se realiza con los comando <code>set-ContentFilterConfig</code> y <code>get-ContentFilterConfig</code></p>
<p>Para añadir un determinado email origen a la whitelist:</p>
<p><code>set-ContentFilterConfig -BypassedSenders usuario@dominio.com</code></p>
<p>En el caso de que queramos crear una whitelist para un dominio origen completo:</p>
<p><code>set-ContentFilterConfig -BypassedSenderDomains dominio.com</code></p>
<p>Además de crear whitelists para dominios origen, podemos hacerlo de la forma contraria, si queremos que todo lo que vaya a un determinado usuario de un dominio que alojamos nosotros podemos hacer whitelists en destino de la siguiente forma:</p>
<p><code>set-ContentFilterConfig -BypassedRecipients abc@tudominio.com,info@tudominio.com</code></p>
<p>Como podemos observar aquí la diferencia es que utilizamos el comando BypassedRecipients en vez de BypassedSenders.</p>
<p>La consulta del estado de las whitelists es muy sencilla y se realiza con el comando <code>get-ContentFilterConfig</code> esto nos devolverá el estado actual de la configuración de los filtros de una forma bastante detallada.</p>
<p>Para hacer más cómoda la introducción de múltiples dominios, el comando <code>set-ContentFilterConfig</code> acepta atributos con múltiples valores, esto nos permite solucionar el hecho de que este comando sobrescribe siempre el valor que hayamos metido en la whitelist. Por lo tanto la forma de introducir un número de emails y/o dominios es separarlos con comas.</p>
<p><code>Set-ContentFilterConfig -BypassedSenderDomains "dominio1.com","dominio2.com","dominio3.com"</code></p>
<p>Para una gestión más eficiente de las listas, existe la posibilidad de introducir y eliminar elementos de forma individual de las listas sin que se vean afectados el resto de los elementos de la lista, para ello podemos utilizar un poco de scripting de PowerShell</p>
<p>Si quisiéramos añadir un dominio sin tocar el resto de lo que tengamos en la whitelist:</p>
<p><code>$foo=Get-ContentFilterConfig<br />
$foo.BypassedSenderDomains +="undominio.com"<br />
$foo | Set-ContentFilterConfig</code></p>
<p>Análogamente, para eliminar un dominio de dicha lista, podemos utilizar los  siguientes comandos:</p>
<p><code>$foo=Get-ContentFilterConfig<br />
$foo.BypassedSenderDomains -="undominio.com"<br />
$foo | Set-ContentFilterConfig</code></p>
<p>Hasta aquí, es todo lo que necesitamos saber para hacer una gestión de Whitelists en Exchange 2007.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.landm.net/2008/08/exchange-2007-whitelists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manejar la cola en exim</title>
		<link>http://blog.landm.net/2008/07/manejar-la-cola-en-exim/</link>
		<comments>http://blog.landm.net/2008/07/manejar-la-cola-en-exim/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 15:05:16 +0000</pubDate>
		<dc:creator>lucas</dc:creator>
				<category><![CDATA[Servidores Correo]]></category>
		<category><![CDATA[exim]]></category>
		<category><![CDATA[flush]]></category>
		<category><![CDATA[queue]]></category>

		<guid isPermaLink="false">http://blog.landm.net/?p=31</guid>
		<description><![CDATA[Para ver los mensajes que hay en la cola:
$exim -bp &#124;more
Borrar los que llevan 18 días en la cola:
$exim -bp &#124; grep 18d &#124; awk ‘{ print $3 }’ &#124; xargs exim -Mrm 
Hacer flush a la cola, o lo que es lo mismo reprocesar la cola:
$exim -qf
o
$exim -qff
y para hacer debug del flush de [...]]]></description>
			<content:encoded><![CDATA[<p>Para ver los mensajes que hay en la cola:</p>
<p><em>$exim -bp |more</em></p>
<p>Borrar los que llevan 18 días en la cola:</p>
<p><em>$exim -bp | grep 18d | awk ‘{ print $3 }’ | xargs exim -Mrm </em></p>
<p>Hacer flush a la cola, o lo que es lo mismo reprocesar la cola:</p>
<p><em>$exim -qf</em></p>
<p>o</p>
<p><em>$exim -qff</em></p>
<p>y para hacer debug del flush de la cola hay que poner -d (debug) al final.</p>
<p>Para procesar también los correos &#8220;frozen&#8221;</p>
<p>Otras opciones para todos los mensajes y para mensajes concretos:</p>
<p>-bp : Queue email in Server<br />
-bpc : Count Queue email in Server<br />
-M : Force delivery<br />
-Mar : Add recipient<br />
-Meb : Edit message body<br />
-Mes : Edit sender<br />
-Mf : Freeze message<br />
-Mg : Give up (and bounce message)<br />
-Mmad : Mark all recipients as delivered<br />
-Mmd : Mark recipient as delivered<br />
-Mrm : Remove message (no bounce)<br />
-Mt : Thaw message<br />
-Mvb : View message body<br />
-Mvh : View message header<br />
-Mvl : View message log</p>
<p><strong>OJO!!!!, todo esto es válido si se utiliza el configure por defecto. Si se utiliza otro hay que añadir -C /opt/exim/configure.queseutiliza</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.landm.net/2008/07/manejar-la-cola-en-exim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>qmail como MX secundario</title>
		<link>http://blog.landm.net/2008/07/qmail-como-mx-secundario/</link>
		<comments>http://blog.landm.net/2008/07/qmail-como-mx-secundario/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 22:04:42 +0000</pubDate>
		<dc:creator>lucas</dc:creator>
				<category><![CDATA[Servidores Correo]]></category>
		<category><![CDATA[qmail]]></category>
		<category><![CDATA[secondary MX]]></category>

		<guid isPermaLink="false">http://blog.landm.net/?p=26</guid>
		<description><![CDATA[Para añadir un dominio y que qmail lo acepte e intente enviarlo al MX principal hay que añadirlo en control/rcpthosts y no en control/locals
El primero dice a qmail los dominios que aceptamos y el segundo los que son locales.
Luego hay que recrear las bases de datos , más bien los cdbs mediante el comando:
/var/qmail/bin/qmail-newmrh
en el [...]]]></description>
			<content:encoded><![CDATA[<p>Para añadir un dominio y que qmail lo acepte e intente enviarlo al MX principal hay que añadirlo en control/rcpthosts y no en control/locals</p>
<p>El primero dice a qmail los dominios que aceptamos y el segundo los que son locales.</p>
<p>Luego hay que recrear las bases de datos , más bien los cdbs mediante el comando:</p>
<p>/var/qmail/bin/qmail-newmrh</p>
<p>en el caso que lo añadamos al control/morercpthosts porque el rctphost está muy lleno.</p>
<p>Por cierto, esto lo aprendimos allá por la primavera del 2000, cuando Mario puso un mensajito en la lista de qmail: <a href="http://www.mail-archive.com/qmail@id.wustl.edu/msg20929.html">msg20929.html</a></p>
<p>Y además, si buscas <a href="http://www.google.es/search?q=qmail+MX+secondary&amp;btnG=Buscar&amp;meta=">qmail+MX+secondary</a> aparece como primer link la pregunta al foro de Mario <img src='http://blog.landm.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.landm.net/2008/07/qmail-como-mx-secundario/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>relay para una ip en concreto</title>
		<link>http://blog.landm.net/2008/07/relay-para-una-ip-en-concreto/</link>
		<comments>http://blog.landm.net/2008/07/relay-para-una-ip-en-concreto/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 21:55:00 +0000</pubDate>
		<dc:creator>lucas</dc:creator>
				<category><![CDATA[Servidores Correo]]></category>
		<category><![CDATA[qmail]]></category>
		<category><![CDATA[open relay]]></category>
		<category><![CDATA[tcp.smtp]]></category>
		<category><![CDATA[tcprules]]></category>

		<guid isPermaLink="false">http://blog.landm.net/?p=23</guid>
		<description><![CDATA[Para abrir el qmail a una determinada ip, lo único que hay que hacer es añadir la ip al fichero cdb de los relays.
Generalmente, un qmail-smtp tiene una pinta así:
exec /usr/local/bin/softlimit -m 20000000
/usr/local/bin/tcpserver -v -H -R -P -l 0
-x /home/vpopmail/etc/tcp.smtp.cdb
-c &#8220;$MAXSMTPD&#8221;
-u &#8220;$QMAILDUID&#8221; -g &#8220;$NOFILESGID&#8221; $IP 25
/var/qmail/bin/qmail-smtpd
/home/vpopmail/bin/vchkpw /bin/true 2&#62;&#38;1
Este, por ejemplo, funciona para vpopmail. Pues el [...]]]></description>
			<content:encoded><![CDATA[<p>Para abrir el qmail a una determinada ip, lo único que hay que hacer es añadir la ip al fichero cdb de los relays.</p>
<p>Generalmente, un qmail-smtp tiene una pinta así:</p>
<p>exec /usr/local/bin/softlimit -m 20000000<br />
/usr/local/bin/tcpserver -v -H -R -P -l 0<br />
-x /home/vpopmail/etc/tcp.smtp.cdb<br />
-c &#8220;$MAXSMTPD&#8221;<br />
-u &#8220;$QMAILDUID&#8221; -g &#8220;$NOFILESGID&#8221; $IP 25<br />
/var/qmail/bin/qmail-smtpd<br />
/home/vpopmail/bin/vchkpw /bin/true 2&gt;&amp;1</p>
<p>Este, por ejemplo, funciona para <a title="Vpopmail" href="http://www.inter7.com/index.php?page=vpopmail">vpopmail</a>. Pues el fichero /home/vpopmail/etc/tcp.smtp.cdb es donde están las ips abiertas, es decir para las que se hace relay. Para actualizar ese fichero basta con añadir esta línea al fichero /home/vpopmail/etc/tcp.smtp</p>
<p>x.x.x.x:allow,RELAYCLIENT=&#8221;",RBLSMTPD=&#8221;"</p>
<p>Ojo, poner mejor delante de la última línea que será algo así como:</p>
<p>:allow,QMAILQUEUE=&#8221;/var/qmail/bin/simscan&#8221;</p>
<p>Luego hay que <em>compilar</em> las reglas con:</p>
<p>/usr/local/bin/tcprules /home/vpopmail/etc/tcp.smtp.cdb /home/vpopmail/etc/tcp.smtp.tmp &lt; /home/vpopmail/etc/tcp.smtp</p>
<p>Ojo, dejar los permisos correctamente de los ficheros. Puede ser que haya algún proceso que los cambie o lee y podemos fastidiarlo. También hay que tener en cuenta que todos los ficheros .cdb, .tmp y el de las reglas tienen que estar en el mismo filesystem. Si no es así da un error un poco feo y poco explicado.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.landm.net/2008/07/relay-para-una-ip-en-concreto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>smtproutes: envío de correo a través de otro servidor</title>
		<link>http://blog.landm.net/2008/07/smtproutes-envio-de-correo-a-traves-de-otro-servidor/</link>
		<comments>http://blog.landm.net/2008/07/smtproutes-envio-de-correo-a-traves-de-otro-servidor/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 21:46:13 +0000</pubDate>
		<dc:creator>lucas</dc:creator>
				<category><![CDATA[qmail]]></category>
		<category><![CDATA[envío mail]]></category>
		<category><![CDATA[qmail smtp]]></category>
		<category><![CDATA[smtp route]]></category>

		<guid isPermaLink="false">http://blog.landm.net/?p=18</guid>
		<description><![CDATA[Para enviar todo el correo de un determinado dominio a través de otro servidor:
$echo &#8220;dominiodestino:ipdelsmarthost&#8221;&#62; /var/qmail/control/smtproutes
Para enviar todo el correo de todos los dominios a través de otro servidor:
$echo &#8220;:ipdelsmarthost&#8221;&#62; /var/qmail/control/smtproutes
Esto viene muy bien cuando por alguna razón nos han metido en alguna blacklist y hay que enrutar todo el correo a través de otra [...]]]></description>
			<content:encoded><![CDATA[<p>Para enviar todo el correo de un determinado dominio a través de otro servidor:</p>
<p>$echo &#8220;dominiodestino:ipdelsmarthost&#8221;&gt; /var/qmail/control/smtproutes</p>
<p>Para enviar todo el correo de todos los dominios a través de otro servidor:</p>
<p>$echo &#8220;:ipdelsmarthost&#8221;&gt; /var/qmail/control/smtproutes</p>
<p>Esto viene muy bien cuando por alguna razón nos han metido en alguna blacklist y hay que <em>enrutar</em> todo el correo a través de otra máquina.</p>
<p>Lo lógico es no olvidar quitarlo cuando se ha corregido el error de la blacklist.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.landm.net/2008/07/smtproutes-envio-de-correo-a-traves-de-otro-servidor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
