Passa ai contenuti principali

testare un servizio SMTP, con telnet

come faccio a sapere se un smtp funziona ?
ecco la risposta in 10 semplici mosse:
  1. At a command prompt, type Telnet and press ENTER.
  2. At the telnet prompt, type and press ENTER, and then type open localhost 25 and press ENTER.
    The output resembles the following:
    220 computername.microsoft.com ESMTP Server (Microsoft Exchange Internet Mail Service 5.5.2651.58) ready
  3. Type helo me and press ENTER.
    The output resembles the following:
    250 OK
  4. Type mail from:email@domain.com and press ENTER.
    The output resembles the following:
    250 OK - mail from <email@domain.com>
  5. Type rcpt to:youremail@yourdomain.com and press ENTER.
    The output resembles the following:
    250 OK - Recipient <youremail@yourdomain.com>
  6. Type Data and press ENTER.
    The output resembles the following:
    354 Send data. End with CRLF.CRLF
  7. Type Subject:This is a test and press ENTER twice.
  8. Type Testing and press ENTER.
  9. Press ENTER, type a period (.), and press ENTER.
    The output resembles the following:
    250 OK
  10. Type quit and press ENTER.
    The output resembles the following:
    221 Closing Port / Mail queued for delivery

Commenti

Post popolari in questo blog

jQuery validation message in italiano

Ecco i messaggi in italiano per il plugin Validation di jQuery . http://docs.jquery.com/Plugins/Validation ciao /m /* * Translated default messages for the jQuery validation plugin. * Language: IT */ jQuery.extend(jQuery.validator.messages, { required: "Questo campo è obbligatorio.", remote: "Riempire questo campo per continuare.", email: "Inserire un indirizzo email valido.", url: "Inserire un indirizzo URL valido.", date: "Inserire una data in formato mm-gg-aaaa.", dateDE: "Inserire una data in formato gg-mm-aaaa.", dateISO: "Inserire una data in formato aaaa-mm-gg.", number: "Inserire un numero.", digits: "Inserire (solo) un numero.", creditcard: "Inserire un numero di carta di credito valido.", equalTo: "Inserire lo stesso valore usato sopra.", accept: "Usare un'estensione valida.&q

NetBeans: percorsi e file

Che JDK usa per girare NetBeans ? Scoprilo in: c:\Programmi\NetBeans 6.5\etc\netbeans.conf Dove stanno le Libraries di NetBeans ? In: %HOMEPATH%\.netbeans\6.5\config\org-netbeans-api-project-libraries\Libraries\ Comodo per copiarle da una versione all'altra (quando si provano RC o beta) enjoy /m