mutt and newsletters

2010-07-28 Thread Jan-Herbert Damm
hello all, I want to send newsletters to groups of people. I can define groups within mutt. Recipient XY is in groups A and B. A newsletter goes to groups A and B. How can i avoid that recipient XY gets the letter twice? Can mutt eliminate the double entries? Going OT: I can imagine a skipt

Re: mutt and newsletters

2010-07-28 Thread Patrick Shanahan
* Jan-Herbert Damm jan-h-d...@web.de [07-28-10 07:29]: hello all, I want to send newsletters to groups of people. I can define groups within mutt. Recipient XY is in groups A and B. A newsletter goes to groups A and B. How can i avoid that recipient XY gets the letter twice? Can mutt

Re: mutt and newsletters

2010-07-28 Thread Jan-Herbert Damm
Patrick Shanahan wrote on 28.07.10: A newsletter goes to groups A and B. How can i avoid that recipient XY gets the letter twice? Can mutt eliminate the double entries? use a 3rd group for the newsletter that goes to both groups cat groupA groupB |sort |uniq groupC

Re: mutt and newsletters

2010-07-28 Thread {mutt-user}
cat groupA groupB |sort |uniq groupC straightforward and simple. sort -u groupA groupB groupC HTH ;-)