Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 1-3 of 3 total  RSS 

nowww!

set redirect from www.example.com to example.com for nginx web server

server {
    listen       80;
    server_name  example.com www.example.com;
    if ( $host = www.example.com ) {
        rewrite ^\/(.*)$ http://example.com/$1 permanent;
    }

    .....
}

ezmlm command line reference

List all email addresses in list
ezmlm-list /path/to/mldir


Add an email address to the list
ezmlm-sub /path/to/mldir foo@bar.com



Remove an email address from the list
ezmlm-unsub /path/to/mldir foo@bar.com

What do you want on Snippets?

I apologize for the temporary interruption in the code here, but I want to extend Code Snippets further, and am seeking the wisdom of the community here. Please post comments!

Also, thanks to all of you who've made this site what it is. I love looking through the code here.
« Newer Snippets
Older Snippets »
Showing 1-3 of 3 total  RSS