You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 12345678910111213141516 |
- BEGIN {
- POPService = "/inet/tcp/0/emailhost/pop3"
- RS = ORS = "\r\n"
- print "user name" |& POPService
- POPService |& getline
- print "pass password" |& POPService
- POPService |& getline
- print "retr 1" |& POPService
- POPService |& getline
- if ($1 != "+OK") exit
- print "quit" |& POPService
- RS = "\r\n\\.\r\n"
- POPService |& getline
- print $0
- close(POPService)
- }
|