Created
January 29, 2012 15:21
-
-
Save mresetar/1699266 to your computer and use it in GitHub Desktop.
Read e-mail Groovy script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.mail.*; | |
import javax.mail.internet.*; | |
@GrabConfig(systemClassLoader=true) | |
@Grapes( | |
@Grab(group='javax.mail', module='mail', version='1.4.4') | |
) | |
// setup connection | |
Properties props = new Properties(); | |
def host = "localhost"; | |
def username = "testuser"; | |
def password = "password"; | |
def provider = "pop3"; | |
// Connect to the POP3 server | |
Session session = Session.getDefaultInstance props, null | |
Store store = session.getStore provider | |
store.connect host, username, password | |
// Open the folder | |
Folder inbox = store.getFolder 'INBOX' | |
if (!inbox) { | |
println 'No INBOX' | |
System.exit 1 | |
} | |
inbox.open(Folder.READ_ONLY) | |
// Get the messages from the server | |
Message[] messages = inbox.getMessages() | |
messages.eachWithIndex { m, i -> | |
println "------------ Message ${i+1} ------------" | |
m.writeTo(System.out) | |
} | |
// Close the connection | |
// but don't remove the messages from the server | |
inbox.close false | |
store.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment