Created
April 12, 2012 12:16
-
-
Save trevershick/2366868 to your computer and use it in GitHub Desktop.
Setting up Mutt and Apache James
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
set smtp_url="smtp://localhost:25" | |
set pop_host="pop://localhost:110" | |
set pop_user=me | |
set pop_pass=me |
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
export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home | |
export PHOENIX_JVM_OPTS="-Djava.net.preferIPv4Stack=true" |
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
$ telnet localhost 4555 | |
Trying ::1... | |
telnet: connect to address ::1: Connection refused | |
Trying 127.0.0.1... | |
Connected to localhost. | |
Escape character is '^]'. | |
JAMES Remote Administration Tool 2.3.2 | |
Please enter your login and password | |
Login id: | |
root | |
Password: | |
root | |
adduser me me | |
User me added |
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
<mailet match="All" class="Forward"> | |
<forwardto>me@localhost</forwardto> | |
</mailet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment