Advertisement
Guest User

Untitled

a guest
Mar 6th, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. $ echo test | mail -s "test" to@example.com -c cc@example.com
  2. WARNING: RunAsUser for MSP ignored, check group ids (egid=102, want=51)
  3. can not write to queue directory /var/spool/clientmqueue/ (RunAsGid=102, required=51): Permission denied
  4.  
  5. # BAD
  6. $ echo test | mail to@example.com -s "test"
  7. # BAD
  8. $ echo test | mail to@example.com -c cc@example.com
  9. # GOOD
  10. $ echo test | mail -s "test" -c cc@example.com to@example.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement