Re: How to filter/limit for syntactically invalid From: line?

2025-02-04 Thread Will Yardley
On Mon, Feb 03, 2025 at 05:53:59PM -0500, Ofer Inbar wrote: > googly.negotiator...@aceecat.org wrote: > > On Mon, Feb 03, 2025 at 09:08:46AM -0500, Ofer Inbar wrote: > > > From: a.org" > > > The first thing I'd try: ~f'^@$' > > Oh interesting, that does work! I thought the "@" in the index

Re: How to filter/limit for syntactically invalid From: line?

2025-02-03 Thread Ofer Inbar
googly.negotiator...@aceecat.org wrote: > On Mon, Feb 03, 2025 at 09:08:46AM -0500, Ofer Inbar wrote: > > > From: a.org" > The first thing I'd try: ~f'^@$' Oh interesting, that does work! I thought the "@" in the index was just a display artifact of some sort, but it looks like mutt really

Re: How to filter/limit for syntactically invalid From: line?

2025-02-03 Thread googly . negotiator862
On Mon, Feb 03, 2025 at 09:08:46AM -0500, Ofer Inbar wrote: > From: a.org" > Probably because of the unbalanced quoting, these show up in my mutt > index as being from "@" - just the @ character in the sender column. > What search expression can I use in / or l(imit) or similar > commands,

How to filter/limit for syntactically invalid From: line?

2025-02-03 Thread Ofer Inbar
I've been getting some spam recently with From: header lines like this: From: a.org" Probably because of the unbalanced quoting, these show up in my mutt index as being from "@" - just the @ character in the sender column. What search expression can I use in / or l(imit) or similar commands

Re: How to match a string like '+447537170394 ' in a send hook?

2024-09-26 Thread Chris Green
On Thu, Sep 26, 2024 at 10:29:21AM +0300, Tapani Tarvainen wrote: > On Wed, Sep 25, 2024 at 12:11:15PM +0100, Chris Green (c...@isbd.net) wrote: > > > To clarify, whhen I get an E-Mail with a From: header like:- > > > > From: +447537170394 > > > > I want replies (i.e. the To: header) to go

Re: How to match a string like '+447537170394 ' in a send hook?

2024-09-26 Thread Tapani Tarvainen
On Wed, Sep 25, 2024 at 12:11:15PM +0100, Chris Green (c...@isbd.net) wrote: > To clarify, whhen I get an E-Mail with a From: header like:- > > From: +447537170394 > > I want replies (i.e. the To: header) to go to:- > > To: Fred Bloggs > > > I can't seem to get mutt to do this for m

Re: Directing replies based on contents of To: header; was: How to match a string like '+447537170394 ' in a send hook?

2024-09-25 Thread Chris Green
On Wed, Sep 25, 2024 at 12:43:36PM +, Michael Kjörling wrote: > On 25 Sep 2024 12:11 +0100, from c...@isbd.net (Chris Green): > >> So, next question (which replaces the first one), how can I change a > >> To: header dependent on the contents of the To: header? > >>

Re: Directing replies based on contents of To: header; was: How to match a string like '+447537170394 ' in a send hook?

2024-09-25 Thread Michael Kjörling
On 25 Sep 2024 12:11 +0100, from c...@isbd.net (Chris Green): >> So, next question (which replaces the first one), how can I change a >> To: header dependent on the contents of the To: header? >> >> What I am trying to do is to change the destination address when I get &g

Re: How to match a string like '+447537170394 ' in a send hook?

2024-09-25 Thread Chris Green
tch. So there must be more to > > > it. > > > > I am sure there is a proper solution, but meanwhile wouldn’t it be > > good enough to just match 447537170394? > > Maybe in your case it uniquely identifies your recipient > > OP here. I think I have found a much

Re: How to match a string like '+447537170394 ' in a send hook?

2024-09-25 Thread Chris Green
On Wed, Sep 25, 2024 at 10:30:33AM +0200, Francesco Ariis wrote: > Hello Chris, > > Il 25 settembre 2024 alle 08:50 Chris Green ha scritto: > > I want to match the following string in a To: address for a send-hook:- > > > > +447537170394 > > > > The + and < and > have special meanings (I th

Re: How to match a string like '+447537170394 ' in a send hook?

2024-09-25 Thread Chris Green
match 447537170394? > Maybe in your case it uniquely identifies your recipient OP here. I think I have found a much more basic problem, I don't think a send-hook can change the To: address. So, next question (which replaces the first one), how can I change a To: header dependent on t

Re: How to match a string like '+447537170394 ' in a send hook?

2024-09-25 Thread Francesco Ariis
Hello Chris, Il 25 settembre 2024 alle 08:50 Chris Green ha scritto: > I want to match the following string in a To: address for a send-hook:- > > +447537170394 > > The + and < and > have special meanings (I think) in an RE, is there a > simple way to tell send-hook that this is just a stri

How to match a string like '+447537170394 ' in a send hook?

2024-09-25 Thread Chris Green
I want to match the following string in a To: address for a send-hook:- +447537170394 The + and < and > have special meanings (I think) in an RE, is there a simple way to tell send-hook that this is just a string with no special meanings at all or am I going to have to escape all the special

Re: How to delete message with purge=no?

2024-04-11 Thread Sadeep Madurange
Hello Will, On 2024-04-10 10:05:50, Will Yardley wrote: > On Wed, Apr 10, 2024 at 08:22:03PM +0800, Sadeep Madurange wrote: > > When deleting emails (with d), I get a prompt for purging them. I'd > > like to silence that prompt with 'no'. And, see the prompt when I > > change folder, or better yet

Re: How to delete message with purge=no?

2024-04-10 Thread Will Yardley
On Wed, Apr 10, 2024 at 08:22:03PM +0800, Sadeep Madurange wrote: > When deleting emails (with d), I get a prompt for purging them. I'd like > to silence that prompt with 'no'. And, see the prompt when I change > folder, or better yet, when I quit mutt. > > Is there a way to do this? If I'm under

Re: How to delete message with purge=no?

2024-04-10 Thread meine via Mutt-users
> > Is there a way to do this? There are a lot of possibilities for deleting mails and empying the trash, see http://www.mutt.org/doc/manual/ Here mutt does like you want to have. I looked into my .muttrc but found no clue how it works. KR, //meine

How to delete message with purge=no?

2024-04-10 Thread Sadeep Madurange
Hello, When deleting emails (with d), I get a prompt for purging them. I'd like to silence that prompt with 'no'. And, see the prompt when I change folder, or better yet, when I quit mutt. Is there a way to do this? -- Sadeep Madurange PGP: 103BF9E3E750BF7E

how to display the subscription status of imap folders?

2024-03-07 Thread fi
Dear Mutt Users browsing folders of an IMAP server looks like this 1 N IMAP ../ 2 IMAP first. 3 IMAP +more. 4 IMAP xyz. 5 IMAP +

Re: How to abort sending a mail?

2023-06-27 Thread Max Görner
Well connect_timeout is supposed to apply to IMAP connections as well as SMTP. I went with it. Thank you very much for the suggestion. I still find it worrying that Mutt can enter a state where it has to be killed, though. Anyhow, for the presented use case the setting should be good enough. Mi

Re: How to abort sending a mail?

2023-06-26 Thread Chris Green
On Mon, Jun 26, 2023 at 08:43:29PM +0200, Matthias Apitz wrote: > El día lunes, junio 26, 2023 a las 03:11:25p. m. +0100, Chris Green escribió: > > > > I have sometimes the same issue using mutt on my Linux phone where the > > > IP to my mobile carrier is not fully up. mutt sits there saying > > >

Re: How to abort sending a mail?

2023-06-26 Thread Matthias Apitz
El día lunes, junio 26, 2023 a las 03:11:25p. m. +0100, Chris Green escribió: > > I have sometimes the same issue using mutt on my Linux phone where the > > IP to my mobile carrier is not fully up. mutt sits there saying > > > > Connecting to imap.1blu.de > > > > and the only way is to kill the

Re: How to abort sending a mail?

2023-06-26 Thread Chris Green
On Mon, Jun 26, 2023 at 02:52:10PM +0200, Matthias Apitz wrote: > El día lunes, junio 26, 2023 a las 12:55:08 +0200, Max Görner escribió: > > > Hello all, > > > > I have a Mutt window open which hangs at the "Connection to ... > > establishing"¹ > > step. This happens very rarely but is quite an

Re: How to abort sending a mail?

2023-06-26 Thread Matthias Apitz
El día lunes, junio 26, 2023 a las 12:55:08 +0200, Max Görner escribió: > Hello all, > > I have a Mutt window open which hangs at the "Connection to ... establishing"¹ > step. This happens very rarely but is quite annoying. In general, I am able to > send mails reliably and without issues. > > M

How to abort sending a mail?

2023-06-26 Thread Max Görner
Hello all, I have a Mutt window open which hangs at the "Connection to ... establishing"¹ step. This happens very rarely but is quite annoying. In general, I am able to send mails reliably and without issues. My only known option is to kill `mutt`, which I dislike. Is there a better way to abort

Re: How to customize the sidebar?

2023-05-15 Thread Sadeep Madurange
On 2023-05-15 16:00:41, Sadeep Madurange wrote: > Just today we switched to gmail. My current sidebar contains the > following folders: > > INBOX > Archive-migration > Azure DevOps > Conversations H > Notes > Old > Trash-migrated > [Gmail]/All Mails > [Gmail]/Drafts > [Gmail]/Import > [Gmail]/Sent

How to customize the sidebar?

2023-05-15 Thread Sadeep Madurange
Just today we switched to gmail. My current sidebar contains the following folders: INBOX Archive-migration Azure DevOps Conversations H Notes Old Trash-migrated [Gmail]/All Mails [Gmail]/Drafts [Gmail]/Import [Gmail]/Sent Mails [Gmail]/Spam [Gmail]/Starred [Gmail]/Trash I'd like to remove all th

Re: How can I post ja.po update patch?

2023-05-01 Thread ribbon
On Mon, May 01, 2023 at 08:39:35AM -0700, Kevin J. McCarthy wrote: > On Mon, May 01, 2023 at 10:25:45PM +0900, ribbon wrote: > >I am using mutt in Japan. > >I found fuzzy in the ja. po file of mutt 2.2.10, so I corrected it. > >How can I post a patch? > > Please po

Re: How can I post ja.po update patch?

2023-05-01 Thread Francesco Ariis
Hello ribbon, Il 01 maggio 2023 alle 22:25 ribbon ha scritto: > I am using mutt in Japan. > I found fuzzy in the ja. po file of mutt 2.2.10, so I corrected it. > How can I post a patch? Most likely `git format-patch -1` and attach it here or if you prefer GitLab workflow, open a Merge R

Re: How can I post ja.po update patch?

2023-05-01 Thread Kevin J. McCarthy
On Mon, May 01, 2023 at 10:25:45PM +0900, ribbon wrote: I am using mutt in Japan. I found fuzzy in the ja. po file of mutt 2.2.10, so I corrected it. How can I post a patch? Please post the patch to the mutt-po mailing list. See the subscribe instructions for "Mutt Translators"

How can I post ja.po update patch?

2023-05-01 Thread ribbon
Hello. I am using mutt in Japan. I found fuzzy in the ja. po file of mutt 2.2.10, so I corrected it. How can I post a patch? ribbon

Re: How do I see the text/html version of an email?

2023-04-24 Thread Rich Kulawiec
he EFF has a tool that allows you to see what kind of information trackers extract and how well your browser defends from them: Cover Your Tracks https://coveryourtracks.eff.org/ All of this is why -- when I teach system/network admin -- I tell my students that they should NEVER re

Re: How do I see the text/html version of an email?

2023-04-24 Thread ckeader via Mutt-users
Jude DaShiell writes: > If the mail is going to be illegible thanks to html, maybe it's > appropriate to automate an illegible email rejected filter that adds a > short message and bounces it back to the sender. If enough of these > senders keep getting rejected messages maybe they'll clean up the

Re: How do I see the text/html version of an email?

2023-04-24 Thread Alan Mackenzie
Hello, Mark. On Mon, Apr 24, 2023 at 09:56:20 -0400, Mark H. Wood wrote: > On Sun, Apr 23, 2023 at 12:50:18PM -0400, Todd Zullinger wrote: > > José María Mateos wrote: > > > On Sun, Apr 23, 2023 at 02:56:35PM +, Alan Mackenzie wrote: > > >> Some considerate organisation has been sending me MIM

Re: How do I see the text/html version of an email?

2023-04-24 Thread Alan Mackenzie
Hello, Cos. On Sun, Apr 23, 2023 at 15:58:14 -0400, Ofer Inbar wrote: > Very easy. Either in the index with that message selected, or when > viewing the (blank) message, hit "v". You'll see a list of all the > MIME portions of the message. Move the pointer to the html version > (using j k just

Re: How do I see the text/html version of an email?

2023-04-24 Thread Alan Mackenzie
Hello, Todd. On Sun, Apr 23, 2023 at 12:50:18 -0400, Todd Zullinger wrote: > José María Mateos wrote: > > On Sun, Apr 23, 2023 at 02:56:35PM +, Alan Mackenzie wrote: > >> Some considerate organisation has been sending me MIME mails with > >> content in a text/html section and a wholly blank te

Re: How do I see the text/html version of an email?

2023-04-24 Thread Mark H. Wood
On Sun, Apr 23, 2023 at 12:50:18PM -0400, Todd Zullinger wrote: > José María Mateos wrote: > > On Sun, Apr 23, 2023 at 02:56:35PM +, Alan Mackenzie wrote: > >> Some considerate organisation has been sending me MIME mails with > >> content in a text/html section and a wholly blank text/plain ver

Re: How do I see the text/html version of an email?

2023-04-23 Thread Cameron Simpson
On 23Apr2023 12:50, Todd Zullinger wrote: An alternative (or addition) to the above is a message-hook: message-hook ~A 'unalternative_order "*"; alternative_order text/enriched text/plain text' message-hook '~C "misbehaving-group@example\.com"' 'unalternative_order "*"; alternative_order text

Re: How do I see the text/html version of an email?

2023-04-23 Thread Jude DaShiell
If the mail is going to be illegible thanks to html, maybe it's appropriate to automate an illegible email rejected filter that adds a short message and bounces it back to the sender. If enough of these senders keep getting rejected messages maybe they'll clean up their acts but count on any start

Re: How do I see the text/html version of an email?

2023-04-23 Thread ckeader via Mutt-users
José María Mateos writes: > On Sun, Apr 23, 2023 at 02:56:35PM +, Alan Mackenzie wrote: > >Some considerate organisation has been sending me MIME mails with > >content in a text/html section and a wholly blank text/plain version. > >What I see in mutt is the blank text/plain. Who on Earth t

Re: How do I see the text/html version of an email?

2023-04-23 Thread Ofer Inbar
On Sun, Apr 23, 2023 at 12:50:18PM -0400, Todd Zullinger wrote: > José María Mateos wrote: > > On Sun, Apr 23, 2023 at 02:56:35PM +, Alan Mackenzie wrote: > >> Some considerate organisation has been sending me MIME mails with > >> content in a text/html section and a wholly blank text/plain ve

Re: How do I see the text/html version of an email?

2023-04-23 Thread Ofer Inbar
Very easy. Either in the index with that message selected, or when viewing the (blank) message, hit "v". You'll see a list of all the MIME portions of the message. Move the pointer to the html version (using j k just like in the regular index) and hit enter to view it. -- Cos

Re: How do I see the text/html version of an email?

2023-04-23 Thread Todd Zullinger
José María Mateos wrote: > On Sun, Apr 23, 2023 at 02:56:35PM +, Alan Mackenzie wrote: >> Some considerate organisation has been sending me MIME mails with >> content in a text/html section and a wholly blank text/plain version. >> What I see in mutt is the blank text/plain. Who on Earth thoug

Re: How do I see the text/html version of an email?

2023-04-23 Thread José María Mateos
On Sun, Apr 23, 2023 at 02:56:35PM +, Alan Mackenzie wrote: Some considerate organisation has been sending me MIME mails with content in a text/html section and a wholly blank text/plain version. What I see in mutt is the blank text/plain. Who on Earth thought a blank text/plain section w

How do I see the text/html version of an email?

2023-04-23 Thread Alan Mackenzie
Hello, mutt. I'm using mutt 2.2.3 on Gentoo GNU/Linux. Some considerate organisation has been sending me MIME mails with content in a text/html section and a wholly blank text/plain version. What I see in mutt is the blank text/plain. Who on Earth thought a blank text/plain section was somehow

Re: How to remove the gap between the status bar and the INBOX

2023-04-03 Thread Sadeep Madurange
On 2023-04-03 09:42:35, Kevin J. McCarthy wrote: > On Mon, Apr 03, 2023 at 12:03:12PM +0800, Sadeep Madurange wrote: > > Yes, a minimum reproducing muttrc (see attached for the screenshot - > > the gap between status bar and the word "INBOX" on the left): > > > > set imap_user=x...@asciimx.com > >

Re: How to remove the gap between the status bar and the INBOX

2023-04-03 Thread Kevin J. McCarthy
On Mon, Apr 03, 2023 at 12:03:12PM +0800, Sadeep Madurange wrote: Yes, a minimum reproducing muttrc (see attached for the screenshot - the gap between status bar and the word "INBOX" on the left): set imap_user=x...@asciimx.com set imap_pass=`pass show email` set folder=imaps://imap.example.com:

Re: How to remove the gap between the status bar and the INBOX

2023-04-02 Thread Sadeep Madurange
On 2023-04-01 09:53:33, Kevin J. McCarthy wrote: > On Sat, Apr 01, 2023 at 05:48:41PM +0800, Sadeep Madurange wrote: > > I just switched to mutt from neomutt. There is a gap of one row between > > the status row and the first folder (i.e., INBOX) in the sidebar. Can I > > remove that? > > To make

Re: How to remove the gap between the status bar and the INBOX

2023-04-01 Thread Ranjan Maitra
On Sat Apr01'23 05:48:41PM, Sadeep Madurange wrote: > From: Sadeep Madurange > Date: Sat, 1 Apr 2023 17:48:41 +0800 > To: mutt-users@mutt.org > Subject: How to remove the gap between the status bar and the INBOX > > I just switched to mutt from neomutt. There is a gap o

Re: How to remove the gap between the status bar and the INBOX

2023-04-01 Thread Kevin J. McCarthy
On Sat, Apr 01, 2023 at 05:48:41PM +0800, Sadeep Madurange wrote: I just switched to mutt from neomutt. There is a gap of one row between the status row and the first folder (i.e., INBOX) in the sidebar. Can I remove that? To make sure I understand, you have $status_on_top set, and there is a

How to remove the gap between the status bar and the INBOX

2023-04-01 Thread Sadeep Madurange
I just switched to mutt from neomutt. There is a gap of one row between the status row and the first folder (i.e., INBOX) in the sidebar. Can I remove that? -- Regards, Sadeep PGP: 103BF9E3E750BF7E signature.asc Description: PGP signature

Re: How mutt check to download emails from an imap server without downloading them more than once?

2023-03-19 Thread Cameron Simpson
On 19Mar2023 09:52, Peng Yu wrote: I use the following python code to download UNDELETED messages. But it will fetch all messages without considering whether an message has been downloaded previously. How does mutt solve this problem to only download the emails that have not been downloaded

How mutt check to download emails from an imap server without downloading them more than once?

2023-03-19 Thread Peng Yu
Hi, I use the following python code to download UNDELETED messages. But it will fetch all messages without considering whether an message has been downloaded previously. How does mutt solve this problem to only download the emails that have not been downloaded before. import email with

How to suppress some progress messages?

2023-03-13 Thread Dan Jacobson
These progress messages are great, but how does one suppress some of them? Reading imaps://j Looking up mail.d Connecting to mai SSL/TLS connectio Authenticating (PLAIN)... Selecting INBOX.S Fetching message headers... Sorting mailbox... Mailbox is unc Closing connection to m Thanks.

Re: How do I make mutt send my mails to a remote MSA?

2023-01-30 Thread raf via Mutt-users
gt; to send the mail to an MSA that can be on the same network for example. How > > can I do this with mutt? > > Is $smtp_url the situation where a MUA is using "Message submission" and it > sends to an MSA? I expect so. The manpage says the syntax is: smtp[s]://[user[

Re: How do I make mutt send my mails to a remote MSA?

2023-01-29 Thread e
mission" (rfc 2476) > to send the mail to an MSA that can be on the same network for example. How > can I do this with mutt?

How do I make mutt send my mails to a remote MSA?

2023-01-29 Thread e
Is it possible to use mutt without having an MTA on your own machine? I have read that some MUA's use "Message submission" (rfc 2476) to send the mail to an MSA that can be on the same network for example. How can I do this with mutt?

Re: How to disable mailbox shortcuts in mailbox browser

2022-06-03 Thread Kevin J. McCarthy
On Fri, Jun 03, 2022 at 05:48:55AM +, Sam Lee via Mutt-users wrote: Is there some kind of setting similar to "set sidebar_use_mailbox_shortcuts=no", but for the mailbox browser? 'unset browser_abbreviate_mailboxes' might work for you. -- Kevin J. McCarthy GPG Fingerprint: 8975 A9B3 3AA3 79

Re: How to disable mailbox shortcuts in mailbox browser

2022-06-03 Thread Sam Lee via Mutt-users
ayed as "=INBOX". In the mailbox browser, how do I make Mutt > display it as "imaps://john-...@example.com/INBOX" instead? > > Is there some kind of setting similar to > "set sidebar_use_mailbox_shortcuts=no", but for the mailbox browser? OP here. By the way

How to disable mailbox shortcuts in mailbox browser

2022-06-02 Thread Sam Lee via Mutt-users
In the sidebar, my mailbox is displayed in a format like "imaps://john-...@example.com/INBOX". However, in the mailbox browser (accessed using keybinding 'y' or :exec browse-mailboxes), it is displayed as "=INBOX". In the mailbox browser, how do I make Mu

Re: Gmail OAuth/OOB deprecation: how to fix?

2022-05-06 Thread Dave Ewart
On Friday, 06.05.2022 at 22:38 +0800, lilydjwg wrote: > On Fri, May 06, 2022 at 03:32:38PM +0100, Dave Ewart wrote: > > [...] > > > > What are the implications of the access code expiring? I don't see any > > symptoms which might be associated with that and the Mutt client is > > running in 'scre

Re: Gmail OAuth/OOB deprecation: how to fix?

2022-05-06 Thread lilydjwg
On Fri, May 06, 2022 at 03:32:38PM +0100, Dave Ewart wrote: > [...] > > What are the implications of the access code expiring? I don't see any > symptoms which might be associated with that and the Mutt client is > running in 'screen' 24/7/365. When it expires you need to login via web and copy t

Re: Gmail OAuth/OOB deprecation: how to fix?

2022-05-06 Thread Dave Ewart
On Friday, 06.05.2022 at 22:23 +0800, lilydjwg wrote: > On Fri, May 06, 2022 at 03:10:37PM +0100, Dave Ewart wrote: > > [...] > > > > Hmm, so "testing mode" is where I did the initial setup to hardcode the > > tokens into my (encrypted) config? > > > > So it sounds like maybe I don't need to do

Re: Gmail OAuth/OOB deprecation: how to fix?

2022-05-06 Thread lilydjwg
On Fri, May 06, 2022 at 03:10:37PM +0100, Dave Ewart wrote: > [...] > > Hmm, so "testing mode" is where I did the initial setup to hardcode the > tokens into my (encrypted) config? > > So it sounds like maybe I don't need to do anything, but is there a > better way that doesn't use 'testing'? [Ma

Re: Gmail OAuth/OOB deprecation: how to fix?

2022-05-06 Thread lilydjwg
On Fri, May 06, 2022 at 03:11:54PM +0100, Dave Ewart wrote: > On Thursday, 05.05.2022 at 20:27 -0700, Robin Lee Powell wrote: > > > Try this: > > https://nidkil.me/2018/01/18/setting-up-mutt-to-send-mail-using-gmail-with-2fa-set/ > > Is this something you are using or recommend? I note that the p

Re: Gmail OAuth/OOB deprecation: how to fix?

2022-05-06 Thread Dave Ewart
On Thursday, 05.05.2022 at 20:27 -0700, Robin Lee Powell wrote: > Try this: > https://nidkil.me/2018/01/18/setting-up-mutt-to-send-mail-using-gmail-with-2fa-set/ Is this something you are using or recommend? I note that the post is more than four years old and my query relates to a very recent ch

Re: Gmail OAuth/OOB deprecation: how to fix?

2022-05-06 Thread Dave Ewart
On Friday, 06.05.2022 at 11:16 +0800, lilydjwg wrote: > [...] > > If you are using it in testing mode, you don't need to do anything as > they say: > > > No action is required on your part as apps using OOB in testing mode > > will not be affected by this change. > > The OOB refers to you manua

Re: Gmail OAuth/OOB deprecation: how to fix?

2022-05-05 Thread lilydjwg
On Thu, May 05, 2022 at 09:51:32PM +0100, Dave Ewart wrote: > [...] > > They refer to > https://developers.googleblog.com/2022/02/making-oauth-flows-safer.html > > "What do I need to do? > > "Migrate your app(s) to an appropriate alternative method by > following these instructions [... a

Gmail OAuth/OOB deprecation: how to fix?

2022-05-05 Thread Dave Ewart
I setup Mutt to talk to Gmail (personal domain GSuite) last year by following a HOWTO. Not sure which one, but this is what I have got in my config. I must have done some initial setup for the client/tokens, but haven't had to touch the configuration since. # For Mutt talking to Gmail set imap_us

Re: How do I rebind the keys in the attachment prompt?

2022-02-17 Thread Kevin J. McCarthy
On Wed, Feb 16, 2022 at 05:23:51PM -0700, li...@ifohancroft.com wrote: When you are on the compose screen and you hit 'a' (attach-file) you get an attachment prompt, that says: Attach file ('?' for list): There you have 3 options (that's how many I found): 1. Hit ? a

How do I rebind the keys in the attachment prompt?

2022-02-16 Thread lists
Hi, I am totally lost about this: When you are on the compose screen and you hit 'a' (attach-file) you get an attachment prompt, that says: Attach file ('?' for list): There you have 3 options (that's how many I found): 1. Hit ? and you get a list of your mailbox f

Re: How is this spam hiding from mutt search?

2022-02-01 Thread Sam Kuper
On Tue, Feb 01, 2022 at 10:16:51AM -0800, Kevin J. McCarthy wrote: > On Tue, Feb 01, 2022 at 10:36:29AM -0500, Ofer Inbar wrote: >> One feature they all share is that "support_id:" prefix in the fake >> email address. > > The ':' isn't allowed in the address local part, so I believe the mutt > par

Re: How is this spam hiding from mutt search?

2022-02-01 Thread Ofer Inbar
On Tue, Feb 01, 2022 at 10:16:51AM -0800, "Kevin J. McCarthy" wrote: > On Tue, Feb 01, 2022 at 10:36:29AM -0500, Ofer Inbar wrote: > >From: "WeTeachSex" > > >One feature they all share is that "support_id:" prefix in the fake > >email address. > > The ':' isn't allowed in the address local pa

Re: How is this spam hiding from mutt search?

2022-02-01 Thread Kevin J. McCarthy
On Tue, Feb 01, 2022 at 10:36:29AM -0500, Ofer Inbar wrote: From: "WeTeachSex" One feature they all share is that "support_id:" prefix in the fake email address. The ':' isn't allowed in the address local part, so I believe the mutt parser is rejecting the email address. Because of that

How is this spam hiding from mutt search?

2022-02-01 Thread Ofer Inbar
I've been getting occasional spam recently that follows a common pattern in the From: header. Below is the full header section of one of these emails, as an example: -- >From MAILER-DAEMON Tue Feb 1 10:20:50 2022 Return-Path: <>

Re: How to 'hook' different programs to view text/html?

2022-01-18 Thread Chris Green
On Tue, Jan 18, 2022 at 08:34:18PM +, Chris Green wrote: > On Tue, Jan 18, 2022 at 12:28:42PM -0800, Kevin J. McCarthy wrote: > > On Tue, Jan 18, 2022 at 05:44:04PM +, Chris Green wrote: > > > Is there a straightforward way to do this? It's easy enough to use a > > > message hook to catch

Re: How to 'hook' different programs to view text/html?

2022-01-18 Thread Chris Green
On Tue, Jan 18, 2022 at 12:28:42PM -0800, Kevin J. McCarthy wrote: > On Tue, Jan 18, 2022 at 05:44:04PM +, Chris Green wrote: > > Is there a straightforward way to do this? It's easy enough to use a > > message hook to catch the messages from the site but what do I need to > > do then to conve

Re: How to 'hook' different programs to view text/html?

2022-01-18 Thread Kevin J. McCarthy
On Tue, Jan 18, 2022 at 05:44:04PM +, Chris Green wrote: Is there a straightforward way to do this? It's easy enough to use a message hook to catch the messages from the site but what do I need to do then to convert the messages and feed them into the pager? You could use the mailcap 'test

Re: How to 'hook' different programs to view text/html?

2022-01-18 Thread Chris Green
On Tue, Jan 18, 2022 at 11:04:40PM +0300, Jean Louis wrote: > * Chris Green [2022-01-18 20:45]: > > I have the fairly standard setup for viewing HTML messages in mutt:- > > > > auto_view text/html > > unalternative_order * > > message-hook ~A "alternative_order text/html text/plain te

Re: How to 'hook' different programs to view text/html?

2022-01-18 Thread Chris Green
On Tue, Jan 18, 2022 at 05:44:04PM +, Chris Green wrote: > I have the fairly standard setup for viewing HTML messages in mutt:- > > auto_view text/html > unalternative_order * > message-hook ~A "alternative_order text/html text/plain text" > > (The unalternative_order is because I

Re: How to 'hook' different programs to view text/html?

2022-01-18 Thread Jean Louis
* Chris Green [2022-01-18 20:45]: > I have the fairly standard setup for viewing HTML messages in mutt:- > > auto_view text/html > unalternative_order * > message-hook ~A "alternative_order text/html text/plain text" > > (The unalternative_order is because I have one special case whe

How to 'hook' different programs to view text/html?

2022-01-18 Thread Chris Green
I have the fairly standard setup for viewing HTML messages in mutt:- auto_view text/html unalternative_order * message-hook ~A "alternative_order text/html text/plain text" (The unalternative_order is because I have one special case where I switch the order of text/html text/plain) .

Re: How to warn before sending email if "Subject:" is empty

2021-12-28 Thread Ed Blackman
On Fri, Dec 24, 2021 at 05:18:57AM +, Sam Lee via Mutt-users wrote: > Is it possible to make Mutt warn about an empty "Subject:" right before > sending the email? > > The `abort_nosubject` configuration variable is not relevant here > because `abort_nosubject` is only for configuring what happ

How to stop Mutt from prompting for Subject

2021-12-23 Thread Sam Lee via Mutt-users
When I want to compose a new email, Mutt will prompt for the recipients ("To:"), followed by the subject ("Subject:"). How do I disable the prompting for the subject? The `autoedit` configuration option will not help here because it disables both prompts (i.e. both "To:

How to warn before sending email if "Subject:" is empty

2021-12-23 Thread Sam Lee via Mutt-users
Is it possible to make Mutt warn about an empty "Subject:" right before sending the email? The `abort_nosubject` configuration variable is not relevant here because `abort_nosubject` is only for configuring what happens when there is no subject given at the subject prompt. I am looking for someth

Re: How can I hide non-matching emails in a search

2021-10-26 Thread ny6p01
Thanks! Lee 😎 On Oct 26, 2021 at 4:08 PM, Derek Martin wrote: On Tue, Oct 26, 2021 at 07:53:28AM -0700, Lee wrote: > Can you use the pipe function on specific fields, like subject, from, > date...? You can, indirectly, by writing a script that does it, and using pipe to call the script. It m

Re: How can I hide non-matching emails in a search

2021-10-26 Thread Derek Martin
On Tue, Oct 26, 2021 at 07:53:28AM -0700, Lee wrote: > Can you use the pipe function on specific fields, like subject, from, > date...? You can, indirectly, by writing a script that does it, and using pipe to call the script. It might be easier to use ignore/unignore to only show the headers you

Re: How can I hide non-matching emails in a search

2021-10-26 Thread Lee
7; in the > subject: > > > > 1. I hit '/'. > > 2. The search prompt shows up. > > 3. I enter 'IO Ninja'. > > 4. I hit 'Enter'. > > 5. mutt finds the first matching email (if any) and sends me to it. > > 6. Now I can use 'n' and 'N' to navigate between the matching emails. > > > > However, all emails in the mailbox are still visible. I want any emails > not > > matching the search term to be hidden. > > > > Is this possible? How? > > > > Best Regards, > > IFo Hancroft > > >

Re: how to add domain name to email address (that is different from hostname)

2021-10-16 Thread Bastian
Another way to query your address book is to use mutt's `query_command`. The way I uses it a. when starting a mail, mutt asks me for 'To:', 'Cc:'. There type 'joe' press CTRL+T and I get either a list of results with results delivered by query_coammnd, or the line immediately expands to

Re: how to add domain name to email address (that is different from hostname)

2021-10-16 Thread Globe Trotter via Mutt-users
> Have you tried setting hostname=yahoo.com in your .muttrc?  I haven't tried > it, but it seems like that would work. Thank you very much! set hostname='yahoo.com' does exactly what I want (at this point, my needs are not more sophisticated) :-) -- > My e-mail uses a whitelist and tags (A

Re: how to add domain name to email address (that is different from hostname)

2021-10-15 Thread John Hawkinson
Replies in-line to you both. Globe Trotter wrote on Sat, 16 Oct 2021 at 00:45:19 EDT in <1714592883.3655338.1634359519...@mail.yahoo.com>: > >> I am wondering how it is possible automagically add a given domain name to > >> an email address that is not in my address boo

Re: how to add domain name to email address (that is different from hostname)

2021-10-15 Thread Chuck Martin
On Sat, Oct 16, 2021 at 04:45:19AM +, Globe Trotter via Mutt-users wrote: > As I mentioned if I type joe in the To: prompt, it expands to > joe@localhost. I want this to expand to a detailed j...@yahoo.com > (where that @yahoo.com is added by default since i do not have joe as > an alias in my

Re: how to add domain name to email address (that is different from hostname)

2021-10-15 Thread Globe Trotter via Mutt-users
On Friday, October 15, 2021, 11:32:38 PM CDT, Jean Louis wrote: > * Globe Trotter via Mutt-users [2021-10-16 03:18]: >> Hi, > >> I am wondering how it is possible automagically add a given domain name to >> an email address that is not in my address book.

Re: how to add domain name to email address (that is different from hostname)

2021-10-15 Thread Jean Louis
* Globe Trotter via Mutt-users [2021-10-16 03:18]: > Hi, > > I am wondering how it is possible automagically add a given domain name to an > email address that is not in my address book. > > Specifically, if I type joe and joe is in my addressbook (or is not a > complete

how to add domain name to email address (that is different from hostname)

2021-10-15 Thread Globe Trotter via Mutt-users
Hi, I am wondering how it is possible automagically add a given domain name to an email address that is not in my address book. Specifically, if I type joe and joe is in my addressbook (or is not a complete email address) as my recipient, I get: joe@hostname what I want to happen is for joe

Re: How to create local label and enlist/see them

2021-09-18 Thread Bhaskar Chowdhury
On 09:56 Sat 18 Sep 2021, Jean Louis wrote: * Bhaskar Chowdhury [2021-09-18 07:31]: Well, I am trying to figure out ,how it could be done . As the subject line said , I need to create specific label on certain message and later wanted to view them in pager . Probably if I wish , selecting

Re: How to create local label and enlist/see them

2021-09-18 Thread Bhaskar Chowdhury
On 11:08 Sat 18 Sep 2021, Marcus C. Gottwald wrote: Bhaskar Chowdhury wrote (Sat 2021-Sep-18 10:05:57 +0530): ... if I put some text there and enter it says "Label created" ....but how to see those label??? I modified "index_format" to show the label string at the rig

Re: How to create local label and enlist/see them

2021-09-18 Thread Marcus C. Gottwald
Bhaskar Chowdhury wrote (Sat 2021-Sep-18 10:05:57 +0530): > ... if I put some text there and enter it says "Label created" but how to > see those label??? I modified "index_format" to show the label string at the right-hand edge of each line. The default

Re: How to create local label and enlist/see them

2021-09-17 Thread Jean Louis
* Bhaskar Chowdhury [2021-09-18 07:31]: > Well, I am trying to figure out ,how it could be done . As the subject line > said , I need to create specific label on certain message and later wanted to > view them in pager . Probably if I wish , selecting one of them and see those &g

How to create local label and enlist/see them

2021-09-17 Thread Bhaskar Chowdhury
Well, I am trying to figure out ,how it could be done . As the subject line said , I need to create specific label on certain message and later wanted to view them in pager . Probably if I wish , selecting one of them and see those specific label mails.(Not sure though is this something &q

Re: How can I hide non-matching emails in a search

2021-09-15 Thread Hedy Ache
ow I can use 'n' and 'N' to navigate between the matching emails. > > However, all emails in the mailbox are still visible. I want any emails not > matching the search term to be hidden. > > Is this possible? How? > > Best Regards, > IFo Hancroft >

  1   2   3   4   5   6   7   8   9   10   >