linha de comando cliente de correio pop3 para windows?

4

Alguém sabe de um cliente que eu possa usar para acessar uma caixa de correio pop3 via linha de comando no Windows? Eu preciso disso para suportar o download de e-mails para um arquivo e ter suporte SSL. Eu realmente gostaria que fosse livre também. Usando meu google-fu, não consegui encontrar um aplicativo que tivesse todos esses recursos.

    
por ryeguy 03.06.2009 / 18:36

6 respostas

5

Confira este site link

Nós usamos o Blat para enviar e-mail via linha de comando e estamos muito felizes com isso. O link tem muitas informações.

    
por 03.06.2009 / 19:45
3

Você pode usar o cliente pop de linha de comando em combinação com o wrapper SSL Stunnel .

Cliente pop de linha de comando

Command Line POP Client is a free console utility that allows you to receive your e-mails to a local directory. It is suitable for batch jobs or whenever there is a need to download e-mails as files into a folder. This mail receiver supports the POP3 protocol and is both robust and light weight. The settings are defined in an xml file.

This e-mail client is compatible for Windows 95, 98, Me, NT, 2000, XP and 2003.

Stunnel

Stunnel is a program that allows you to encrypt arbitrary TCP connections inside SSL (Secure Sockets Layer) available on both Unix and Windows. Stunnel can allow you to secure non-SSL aware daemons and protocols (like POP, IMAP, LDAP, etc) by having Stunnel provide the encryption, requiring no changes to the daemon's code.

The Stunnel source code is not a complete product -- you still require a functioning SSL library such as OpenSSL or SSLeay in order to compile stunnel. This means that stunnel can support whatever (and only) that which your SSL library can, without making any changes in the Stunnel code.

    
por 03.06.2009 / 18:44
3

Não há suporte SSL, mas eu uso quando preciso:

c:\>telnet pop3.avatopia.com 110
   +OK Hello there.
   >user iboyd
   +OK Password required.
   >pass xxxxxxxxx
   +OK Logged in.
   >list
   +OK
   1 1924
   2 1915
   .
   >retr 1
   Receive: from localhost ....
   [trim]
   >dele 1
   +OK Deleted
   >quit
   +OK Bye-bye.

Connection to host lost.

C:\>
    
por 03.06.2009 / 20:26
1

você poderia usar o pinho via cygwin; Eu já usei isso antes.

    
por 03.06.2009 / 18:45
0

Você pode usar esses cmdlets para o Powershell

link

Estes não são gratuitos, no entanto

    
por 03.06.2009 / 18:39
0

Heres um .. link

    
por 03.06.2009 / 18:39