Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2015
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. # rule:[redir_head]
  2. if anyof (header :contains "Subject" "testword")
  3. {
  4. redirect "email@qseo.ru";
  5. }
  6.  
  7. # rule:[redir_body]
  8. if anyof (body :contains "testword")
  9. {
  10. redirect "email@qseo.ru";
  11. }
  12.  
  13. # rule:[redir_from]
  14. if anyof (address :contains "From" "testword")
  15. {
  16. redirect "email@qseo.ru";
  17. }
  18.  
  19. # rule:[redir_to]
  20. if anyof (address :contains "To" "testword")
  21. {
  22. redirect "email@qseo.ru";
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement