<?xml version="1.0" encoding="UTF-8" ?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Posteet: mail</title> 
    <link>http://www.posteet.com/</link> 
    <description>Recent posteets posted to Posteet</description>
    <ttl>60</ttl>

    
    <item>
        <title>Configuration de base d'un postfix</title>
        <link>http://www.posteet.com/view/1225</link>
        <description>
        <![CDATA[<pre>apt-get install postfix
# Choisir configuration type 'Site internet'

//////////////////////////
//-- etc/postfix/main.cf
//////////////////////////
myhostname = bart
mydomain = mydomain.com
myorigin = $myhostname.$mydomain
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
mydestination = $myhostname, $myorigin, localhost.$mydomain, localhost
mynetworks = 127.0.0.0/8,192.168.10.0/24 # Defines networks allowed for SMTP connections
#luser_relay = user  # used with the local daemon in the transport map,
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
transport_maps = hash:/etc/postfix/transport

//////////////////////////
//-- /etc/postfix/transport
//////////////////////////
extdomain.com smtp:[192.168.10.1]  # relay
.extdomain.com smtp:[192.168.10.1] # tous les sous domaines
* discard # jeter tous les autres messages

//////////////////////////
postmap /etc/postfix/transport
/etc/init.d/postfix reload
# Consulter les logs dans mail.info</pre> <a href="http://www.posteet.com/tags/debian">[debian]</a>  <a href="http://www.posteet.com/tags/mail">[mail]</a>  <a href="http://www.posteet.com/tags/postfix">[postfix]</a>  <a href="http://www.posteet.com/tags/relay">[relay]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Fri, 29 Aug 2008 15:52:38 +0000</pubDate>

            <category>debian</category>
            <category>mail</category>
            <category>postfix</category>
            <category>relay</category>
    
    </item>

  
    <item>
        <title>Tester les performances d'un serveur de mail</title>
        <link>http://www.posteet.com/view/712</link>
        <description>
        <![CDATA[<pre>smtp-source -s 20 -l 5120 -m 15 -c -f user1@domain.tld -t user2@domain.tld serveurdemail:25

# -s Nombre de thread
# -l Taille du message
# -m Nombre de message
# -c affiche un compteur
# -f expediteur
# -t destinataire</pre> <a href="http://www.posteet.com/tags/bash">[bash]</a>  <a href="http://www.posteet.com/tags/email">[email]</a>  <a href="http://www.posteet.com/tags/mail">[mail]</a>  <a href="http://www.posteet.com/tags/performance">[performance]</a>  <a href="http://www.posteet.com/tags/postfix">[postfix]</a>  <a href="http://www.posteet.com/tags/smtp">[smtp]</a>  <a href="http://www.posteet.com/tags/système">[système]</a> ]]>        </description>
        <dc:creator>henri</dc:creator>
        <pubDate>Fri, 01 Feb 2008 09:33:05 +0000</pubDate>

            <category>bash</category>
            <category>email</category>
            <category>mail</category>
            <category>performance</category>
            <category>postfix</category>
            <category>smtp</category>
            <category>système</category>
    
    </item>

  
    <item>
        <title>Cleaning Apple Mail's Envelope Index</title>
        <link>http://www.posteet.com/view/553</link>
        <description>
        <![CDATA[<pre>Apple Mail keeps a lot of junk in a SQLite database named Envelope Index. Since it's a database, it tends to grow with time, and deleted records are not handled very efficiently. You might want to clean it a bit from time to time, and Mail might even seem a little faster after that.

1. Quit Mail

2. Launch a terminal, and type this command :

sqlite3 ~/Library/Mail/Envelope\ Index vacuum</pre> <a href="http://www.posteet.com/tags/macosx">[macosx]</a>  <a href="http://www.posteet.com/tags/mail">[mail]</a> ]]>        </description>
        <dc:creator>skanx</dc:creator>
        <pubDate>Fri, 07 Dec 2007 09:50:54 +0000</pubDate>

            <category>macosx</category>
            <category>mail</category>
    
    </item>

  
    <item>
        <title>Encodé username/pass pour tester SMTP authentifié</title>
        <link>http://www.posteet.com/view/180</link>
        <description>
        <![CDATA[<pre># credentials must be Base64 encoded. Two methods :
printf 'username\0username\0password' | mmencode
perl -MMIME::Base64 -e 'print encode_base64(&quot;username\0username\0password&quot;);'</pre> <a href="http://www.posteet.com/tags/auth">[auth]</a>  <a href="http://www.posteet.com/tags/base64">[base64]</a>  <a href="http://www.posteet.com/tags/mail">[mail]</a>  <a href="http://www.posteet.com/tags/smtp">[smtp]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Sun, 04 Nov 2007 16:36:20 +0000</pubDate>

            <category>auth</category>
            <category>base64</category>
            <category>mail</category>
            <category>smtp</category>
    
    </item>

  
    <item>
        <title>Vérifier la validité d'une adresse email avec php</title>
        <link>http://www.posteet.com/view/152</link>
        <description>
        <![CDATA[<pre>// Vérification de la forme
function isEmail($email){
 return preg_match(&quot;/^(\w|-|\.)+@((\w|-)+\.)+[a-z]{2,6}$/i&quot;, $email)
}

// Domaine valide ?
function isEmailDomaine($email){
   list($compte,$domaine)=split('@',$email,2);
   if(!checkdnsrr($domaine,'MX') &amp;&amp; !checkdnsrr($domaine,'A')){
     return false;
   }else{
     return true;
   }</pre> <a href="http://www.posteet.com/tags/email">[email]</a>  <a href="http://www.posteet.com/tags/formulaire">[formulaire]</a>  <a href="http://www.posteet.com/tags/mail">[mail]</a>  <a href="http://www.posteet.com/tags/php">[php]</a> ]]>        </description>
        <dc:creator>daoro</dc:creator>
        <pubDate>Sat, 03 Nov 2007 21:41:15 +0000</pubDate>

            <category>email</category>
            <category>formulaire</category>
            <category>mail</category>
            <category>php</category>
    
    </item>

  
    <item>
        <title>commandes POP</title>
        <link>http://www.posteet.com/view/74</link>
        <description>
        <![CDATA[<pre>telnet mon_serveur.com 110
USER toto
PASS toto
STAT (affiche le nombre de mails dans la boite)
RETR 12 (affiche le mail 12)
TOP 12 25 (affiche les 25 premières lignes du mail 12)
DELE 12 (efface le mail 12)
QUIT</pre> <a href="http://www.posteet.com/tags/commandes">[commandes]</a>  <a href="http://www.posteet.com/tags/mail">[mail]</a>  <a href="http://www.posteet.com/tags/pop">[pop]</a> ]]>        </description>
        <dc:creator>neorom</dc:creator>
        <pubDate>Thu, 11 Oct 2007 04:41:13 +0000</pubDate>

            <category>commandes</category>
            <category>mail</category>
            <category>pop</category>
    
    </item>

  
    <item>
        <title>Envoi de mail avec pièce jointe avec la commande &quot;mutt&quot;</title>
        <link>http://www.posteet.com/view/43</link>
        <description>
        <![CDATA[<pre>mutt -a PIECE_JOINTE -s &quot;SUJET&quot; EMAIL_DESTINATAIRE &lt; FICHER_AVEC_CORPS_DU_MSG</pre> <a href="http://www.posteet.com/tags/email">[email]</a>  <a href="http://www.posteet.com/tags/Linux">[Linux]</a>  <a href="http://www.posteet.com/tags/mail">[mail]</a>  <a href="http://www.posteet.com/tags/mutt">[mutt]</a>  <a href="http://www.posteet.com/tags/pièce jointe">[pièce jointe]</a>  <a href="http://www.posteet.com/tags/shell">[shell]</a> ]]>        </description>
        <dc:creator>henri</dc:creator>
        <pubDate>Wed, 26 Sep 2007 06:44:36 +0000</pubDate>

            <category>email</category>
            <category>Linux</category>
            <category>mail</category>
            <category>mutt</category>
            <category>pièce jointe</category>
            <category>shell</category>
    
    </item>

  
    <item>
        <title>effacer les mails d'un compte unix</title>
        <link>http://www.posteet.com/view/18</link>
        <description>
        <![CDATA[<pre>mail -u user
d *
quit</pre> <a href="http://www.posteet.com/tags/administration">[administration]</a>  <a href="http://www.posteet.com/tags/mail">[mail]</a> ]]>        </description>
        <dc:creator>neorom</dc:creator>
        <pubDate>Mon, 24 Sep 2007 06:49:54 +0000</pubDate>

            <category>administration</category>
            <category>mail</category>
    
    </item>


</channel>
</rss>
