Re: Subscribing to Discourse emails (mailing-list mode)

2019-07-04 Thread Cameron Simpson

On 05Jul2019 10:05, Cameron Simpson  wrote:

It occurs to me now that if you want greater precision than:

! ~f discourse

you could make an address group and go:

! ~f %discourse

and maintain a small alias group thus:

alias -group discourse discourse \
  Haskell Discourse List , \
  Some Other Discourse List 


Of course, that should be:

 ! %f discourse

Sorry,
Cameron Simpson 


Re: Subscribing to Discourse emails (mailing-list mode)

2019-07-04 Thread Cameron Simpson

On 04Jul2019 13:46, Francesco Ariis  wrote:

On Sat, Jun 15, 2019 at 09:49:34AM +1000, Cameron Simpson wrote:

Maybe beef up the limit? Untested:

 folder-hook fa-ml 'push !~l | ~f discou...@haskell.org'


Indeed that is a simple and sensible solution. I post the actual pattern
I used here, for future reference:

   folder-hook fa-ml 'push "~r>1m!(~F)(~l | ~f 
   discourse)"'


I'm glad it was helpful.

It occurs to me now that if you want greater precision than:

 ! ~f discourse

you could make an address group and go:

 ! ~f %discourse

and maintain a small alias group thus:

 alias -group discourse discourse \
   Haskell Discourse List , \
   Some Other Discourse List 

I find groups quite handy, for example tuning for HTML vs plain text:

 # prefer plain text
 message-hook . 'unalternative_order *; alternative_order text/plain text/html'
 # senders who can't seem to master multipart/mixed, and send empty
 # or useless text/plain sections
 # or just badly badly formatted plain text, such as live.com etc
 message-hook '%f htmlers | ~f @no-re...@cc.yahoo-inc.com | ~f @outlook.com | 
~f live.com | ~f @facebookmail.com' 'unalternative_order *; alternative_order 
text/html text/plain'

Cheers,
Cameron Simpson 


Re: mutt and clear-signing

2019-07-04 Thread tech-lists

On Wed, Jul 03, 2019 at 09:20:53AM +1000, m...@raf.org wrote:


be warned though that the SKS network (where you might get keys from)
has recently been attacked by the poisoning of some high profile keys
that, if fetched and imported, will break your gnupg installation.

see the following for more information and advice:

 https://gist.github.com/rjhansen/67ab921ffb4084c865b3618d6955275f


thanks very much for this. what a nightmare!
--
J.


signature.asc
Description: PGP signature


Re: Subscribing to Discourse emails (mailing-list mode)

2019-07-04 Thread Francesco Ariis
On Sat, Jun 15, 2019 at 09:49:34AM +1000, Cameron Simpson wrote:
> Maybe beef up the limit? Untested:
> 
>  folder-hook fa-ml 'push !~l | ~f discou...@haskell.org'

Indeed that is a simple and sensible solution. I post the actual pattern
I used here, for future reference:

folder-hook fa-ml 'push "~r>1m!(~F)(~l | ~f 
discourse)"'

Many thanks Cameron
-F