Skip to content

Instantly share code, notes, and snippets.

@smfreegard
Created July 21, 2016 17:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smfreegard/0cbc3deb39cef39d2f9cc8f9a690040e to your computer and use it in GitHub Desktop.
Save smfreegard/0cbc3deb39cef39d2f9cc8f9a690040e to your computer and use it in GitHub Desktop.
freemail_envfrom {
type = "from";
filter = "email:domain";
map = "https://raw.githubusercontent.com/willwhite/freemail/master/data/free.txt";
symbol = "FREEMAIL_ENVFROM";
}
freemail_envrcpt {
type = "rcpt";
filter = "email:domain";
map = "https://raw.githubusercontent.com/willwhite/freemail/master/data/free.txt";
symbol = "FREEMAIL_ENVRCPT";
}
freemail_from {
type = "header";
header = "from";
filter = "email:domain";
map = "https://raw.githubusercontent.com/willwhite/freemail/master/data/free.txt";
symbol = "FREEMAIL_FROM";
}
freemail_to {
type = "header";
header = "To";
filter = "regexp:/@([^@ ]+)/";
map = "https://raw.githubusercontent.com/willwhite/freemail/master/data/free.txt";
symbol = "FREEMAIL_TO";
}
freemail_replyto {
type = "header";
header = "Reply-To";
filter = "email:domain";
map = "https://raw.githubusercontent.com/willwhite/freemail/master/data/free.txt";
symbol = "FREEMAIL_REPLYTO";
}
disposable_envfrom {
type = "from";
filter = "email:domain";
map = "https://raw.githubusercontent.com/willwhite/freemail/master/data/disposable.txt";
symbol = "DISPOSABLE_ENVFROM";
}
disposable_envrcpt {
type = "rcpt";
filter = "email:domain";
map = "https://raw.githubusercontent.com/willwhite/freemail/master/data/disposable.txt";
symbol = "DISPOSABLE_ENVRCPT";
}
disposable_from {
type = "header";
header = "from";
filter = "email:domain";
map = "https://raw.githubusercontent.com/willwhite/freemail/master/data/disposable.txt";
symbol = "DISPOSABLE_FROM";
}
disposable_to {
type = "header";
header = "To";
filter = "regexp:/@([^@ ]+)/";
map = "https://raw.githubusercontent.com/willwhite/freemail/master/data/disposable.txt";
symbol = "DISPOSABLE_TO";
}
disposable_replyto {
type = "header";
header = "Reply-To";
filter = "email:domain";
map = "https://raw.githubusercontent.com/willwhite/freemail/master/data/disposable.txt";
symbol = "DISPOSABLE_REPLYTO"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment