Advertisement
Guest User

Untitled

a guest
Aug 15th, 2017
444
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. require ["envelope", "fileinto"];
  2. if envelope :is "from" "test@mydomain.com" {
  3. fileinto "Test";
  4. }
  5.  
  6. dovecot: lda(test@mydomain.com): Error: sieve: msgid=<[...]>: failed to store into mailbox 'Test': Mailbox doesn't exist: Test
  7. dovecot: lda(test@mydomain.com): sieve: msgid=<[...]>: stored mail into mailbox 'INBOX'
  8.  
  9. namespace inbox {
  10. inbox = yes
  11. location =
  12. mailbox Drafts {
  13. auto = subscribe
  14. special_use = Drafts
  15. }
  16. mailbox Junk {
  17. auto = subscribe
  18. special_use = Junk
  19. }
  20. mailbox Sent {
  21. auto = subscribe
  22. special_use = Sent
  23. }
  24. mailbox Test {
  25. auto = subscribe
  26. }
  27. mailbox Trash {
  28. auto = subscribe
  29. special_use = Trash
  30. }
  31. prefix =
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement