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

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

    
    <item>
        <title>Email validater</title>
        <link>http://www.posteet.com/view/1284</link>
        <description>
        <![CDATA[<pre>function emlChk(str) // email format checker/validator.
{
	var filter=/^([\w-]+((?:\.|\+)[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i
	if(filter.test(str))
	{
		return true
	} else {
		return false
	}
}</pre> <a href="http://www.posteet.com/tags/email">[email]</a>  <a href="http://www.posteet.com/tags/validate">[validate]</a> ]]>        </description>
        <dc:creator>nox.freak</dc:creator>
        <pubDate>Fri, 26 Sep 2008 18:43:02 +0000</pubDate>

            <category>email</category>
            <category>validate</category>
    
    </item>

  
    <item>
        <title>validate email</title>
        <link>http://www.posteet.com/view/1090</link>
        <description>
        <![CDATA[<pre>/*method validateMail*/
        public bool validateMail(string Mailadress)
        {
            string mailPattern = @&quot;^[\w\._]{1,}@[\w\._]{2,}\.\w{2,4}$”;
            Regex re = new Regex(mailPattern);
            Match ma = re.Match(Mailadress);
            if (ma.Success)
                return true;
            else
                return false;
        }</pre> <a href="http://www.posteet.com/tags/c#">[c#]</a>  <a href="http://www.posteet.com/tags/email">[email]</a>  <a href="http://www.posteet.com/tags/validate">[validate]</a> ]]>        </description>
        <dc:creator>sx</dc:creator>
        <pubDate>Wed, 09 Jul 2008 06:32:05 +0000</pubDate>

            <category>c#</category>
            <category>email</category>
            <category>validate</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>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>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>


</channel>
</rss>
