• How do I search for e-mail addresses with .info domain suffix?

    From Ant@21:1/5 to All on Mon May 25 21:20:42 2020
    Search .info resulted "info". I just want to search for the domain suffix.

    Thank you for reading and hopefully answering. :)
    --
    ..!.. illness like COVID-19/2019-nCoV/SARS-CoV-2!
    Note: A fixed width font (Courier, Monospace, etc.) is required to see this signature correctly.
    /\___/\ Ant(Dude) @ http://aqfl.net & http://antfarm.home.dhs.org /
    / /\ /\ \ http://antfarm.ma.cx. Please nuke ANT if replying by e-mail.
    | |o o| |
    \ _ /
    ( )

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Tom@21:1/5 to Ant on Tue May 26 19:58:03 2020
    On 2020-05-26, Ant <ant@zimage.comANT> wrote:
    Search .info resulted "info". I just want to search for the domain suffix.

    Thank you for reading and hopefully answering. :)

    Hello,

    Try escaping the ".". In other words, search for "\.info" instead of
    ".info".

    Hope that helps,

    Tom

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Ant@21:1/5 to Ant on Sat Oct 17 20:19:37 2020
    Ant <ant@zimage.comant> wrote:
    Search .info resulted "info". I just want to search for the domain suffix.

    Thank you for reading and hopefully answering. :)

    No one knows? :(
    --
    17th, Lakers! :D Life's so loco! ..!.. *isms, sins, hates, (d)evil, illnesses (e.g., COVID-19 & SARS-CoV-2), deaths (RIP), (H&h)eat, interruptions, stresses, fires, out(r)ages, dramas, unlucky #4, 2020, greeds, bugs (e.g., crashes & female mosquitoes),
    etc. D:
    Note: A fixed width font (Courier, Monospace, etc.) is required to see this signature correctly.
    /\___/\ Ant(Dude) @ http://aqfl.net & http://antfarm.home.dhs.org.
    / /\ /\ \ Please nuke ANT if replying by e-mail.
    | |o o| |
    \ _ /
    ( )

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Keith Thompson@21:1/5 to Ant on Sat Oct 17 19:13:40 2020
    ant@zimage.comANT (Ant) writes:
    Ant <ant@zimage.comant> wrote:
    Search .info resulted "info". I just want to search for the domain suffix.

    Thank you for reading and hopefully answering. :)

    No one knows? :(

    The search is for a regular expression, so the "." matches any single character. Try searching for "\.info".

    --
    Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com
    Working, but not speaking, for Philips Healthcare
    void Void(void) { Void(); } /* The recursive call of the void */

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Ant@21:1/5 to Keith Thompson on Sat Oct 17 22:08:57 2020
    Keith Thompson <Keith.S.Thompson+u@gmail.com> wrote:
    ant@zimage.comANT (Ant) writes:
    Ant <ant@zimage.comant> wrote:
    Search .info resulted "info". I just want to search for the domain suffix.

    Thank you for reading and hopefully answering. :)

    No one knows? :(

    The search is for a regular expression, so the "." matches any single character. Try searching for "\.info".

    Thanks. Hmm, it still shows all info without their periods too like "information". Same for searching with \.edu and got "schedule" hits. How
    do I include the periods only?

    --
    17th, Lakers! :D Life's so loco! ..!.. *isms, sins, hates, (d)evil, illnesses (e.g., COVID-19 & SARS-CoV-2), deaths (RIP), (H&h)eat, interruptions, stresses, fires, out(r)ages, dramas, unlucky #4, 2020, greeds, bugs (e.g., crashes & female mosquitoes),
    etc. D:
    Note: A fixed width font (Courier, Monospace, etc.) is required to see this signature correctly.
    /\___/\ Ant(Dude) @ http://aqfl.net & http://antfarm.home.dhs.org.
    / /\ /\ \ Please nuke ANT if replying by e-mail.
    | |o o| |
    \ _ /
    ( )

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Keith Thompson@21:1/5 to Ant on Sat Oct 17 21:43:47 2020
    ant@zimage.comANT (Ant) writes:
    Keith Thompson <Keith.S.Thompson+u@gmail.com> wrote:
    ant@zimage.comANT (Ant) writes:
    Ant <ant@zimage.comant> wrote:
    Search .info resulted "info". I just want to search for the domain suffix.

    Thank you for reading and hopefully answering. :)

    No one knows? :(

    The search is for a regular expression, so the "." matches any single
    character. Try searching for "\.info".

    Thanks. Hmm, it still shows all info without their periods too like "information". Same for searching with \.edu and got "schedule" hits. How
    do I include the periods only?

    Exactly what command did you try?

    When I type
    <Esc> / \.info
    it searches for messages containing ".info" either in the sender address
    or in the subject (I haven't checked which header lines it searches on.)

    --
    Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com
    Working, but not speaking, for Philips Healthcare
    void Void(void) { Void(); } /* The recursive call of the void */

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Chris Green@21:1/5 to Ant on Sun Oct 18 08:59:02 2020
    Ant <ant@zimage.comant> wrote:
    Ant <ant@zimage.comant> wrote:
    Search .info resulted "info". I just want to search for the domain suffix.

    Thank you for reading and hopefully answering. :)

    No one knows? :(

    Well if it's a Regular Expression then dot means 'any character', if
    you want to search for an actual dot you need to escape it so it loses
    its special significance.

    So you need to search for:- \.info


    --
    Chris Green
    ยท

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Ant@21:1/5 to Keith Thompson on Sun Oct 18 04:15:36 2020
    Keith Thompson <Keith.S.Thompson+u@gmail.com> wrote:
    ant@zimage.comANT (Ant) writes:
    Keith Thompson <Keith.S.Thompson+u@gmail.com> wrote:
    ant@zimage.comANT (Ant) writes:
    Ant <ant@zimage.comant> wrote:
    Search .info resulted "info". I just want to search for the domain suffix.

    Thank you for reading and hopefully answering. :)

    No one knows? :(

    The search is for a regular expression, so the "." matches any single
    character. Try searching for "\.info".

    Thanks. Hmm, it still shows all info without their periods too like "information". Same for searching with \.edu and got "schedule" hits. How do I include the periods only?

    Exactly what command did you try?

    When I type
    <Esc> / \.info
    it searches for messages containing ".info" either in the sender address
    or in the subject (I haven't checked which header lines it searches on.)

    I used ~B command to "Limit to messages matching". I tried your method,
    but it didn't filter out only the e-mails that matched. :(
    --
    17th, Lakers! :D Life's so loco! ..!.. *isms, sins, hates, (d)evil, illnesses (e.g., COVID-19 & SARS-CoV-2), deaths (RIP), (H&h)eat, interruptions, stresses, fires, out(r)ages, dramas, unlucky #4, 2020, greeds, bugs (e.g., crashes & female mosquitoes),
    etc. D:
    Note: A fixed width font (Courier, Monospace, etc.) is required to see this signature correctly.
    /\___/\ Ant(Dude) @ http://aqfl.net & http://antfarm.home.dhs.org.
    / /\ /\ \ Please nuke ANT if replying by e-mail.
    | |o o| |
    \ _ /
    ( )

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Eike Rathke@21:1/5 to All on Sun Oct 18 11:05:41 2020
    * Ant, 2020-10-18 09:15 UTC:
    Ant <ant@zimage.comant> wrote:
    Search .info resulted "info". I just want to search for the domain suffix.

    I used ~B command to "Limit to messages matching".

    ~B searches the whole message. Is that what you want?

    Anyway, escaping regex metacharacters correctly can be tricky and also
    depends on quote level. If you use

    ~B .info

    or

    ~B \.info

    Then the after the first parse it ends up as plain ~B .info because the escapement is eaten there. These should work:

    ~B \\.info
    ~B '\.info'
    ~B "\\.info"


    Eike

    --
    OpenPGP/GnuPG encrypted mail preferred in all private communication.
    GPG key 0x6A6CD5B765632D3A - 2265 D7F3 A7B0 95CC 3918 630B 6A6C D5B7 6563 2D3A Use LibreOffice! https://www.libreoffice.org/

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Ant@21:1/5 to Eike Rathke on Sun Oct 18 20:35:39 2020
    Eike Rathke <erack+nutznetz.o@posteo.de> wrote:
    * Ant, 2020-10-18 09:15 UTC:
    Ant <ant@zimage.comant> wrote:
    Search .info resulted "info". I just want to search for the domain suffix.

    I used ~B command to "Limit to messages matching".

    ~B searches the whole message. Is that what you want?

    Anyway, escaping regex metacharacters correctly can be tricky and also depends on quote level. If you use

    ~B .info

    or

    ~B \.info

    Then the after the first parse it ends up as plain ~B .info because the escapement is eaten there. These should work:

    ~B \\.info
    ~B '\.info'
    ~B "\\.info"

    Double \s worked. Yes, bodies too. Thank you again. :)
    --
    17th, Lakers! :D Life's so loco! ..!.. *isms, sins, hates, (d)evil, illnesses (e.g., COVID-19 & SARS-CoV-2), deaths (RIP), (H&h)eat, interruptions, stresses, fires, out(r)ages, dramas, unlucky #4, 2020, greeds, bugs (e.g., crashes & female mosquitoes),
    etc. D:
    Note: A fixed width font (Courier, Monospace, etc.) is required to see this signature correctly.
    /\___/\ Ant(Dude) @ http://aqfl.net & http://antfarm.home.dhs.org.
    / /\ /\ \ Please nuke ANT if replying by e-mail.
    | |o o| |
    \ _ /
    ( )

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From RS Wood@21:1/5 to Ant on Fri Oct 23 00:13:00 2020
    On 2020-10-18, Ant <ant@zimage.comANT> wrote:
    Ant <ant@zimage.comant> wrote:
    Search .info resulted "info". I just want to search for the domain suffix.

    Thank you for reading and hopefully answering. :)

    No one knows? :(

    From the index, limit the list of messages to just those with info in
    the address:

    l ~f info (that's a lower case L)


    Ant, you might benefit from my Woodnotes Guide to Mutt, kind of a
    starter guide. It covers a lot of the things you've been asking about.

    http://therandymon.com/index.php?/archives/198-Woodnotes-Guide-to-the-Mutt-Email-Client.html

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Ant@21:1/5 to RS Wood on Thu Oct 22 21:47:35 2020
    RS Wood <rsw@therandymon.com> wrote:
    On 2020-10-18, Ant <ant@zimage.comANT> wrote:
    Ant <ant@zimage.comant> wrote:
    Search .info resulted "info". I just want to search for the domain suffix.

    Thank you for reading and hopefully answering. :)

    No one knows? :(

    From the index, limit the list of messages to just those with info in
    the address:

    l ~f info (that's a lower case L)

    That didn't work when I tried to search .edu with "l ~f edu". :(


    Ant, you might benefit from my Woodnotes Guide to Mutt, kind of a
    starter guide. It covers a lot of the things you've been asking about.

    http://therandymon.com/index.php?/archives/198-Woodnotes-Guide-to-the-Mutt-Email-Client.html

    Thanks.
    --
    Life's so loco! ..!.. *isms, sins, hates, (d)evil, illnesses (e.g., COVID-19 & SARS-CoV-2), deaths (RIP), heat (rays), interruptions, stresses, fires, out(r)ages, dramas, unlucky #4, 2020, greeds, bugs (e.g., crashes & female mosquitoes), etc. D:
    Note: A fixed width font (Courier, Monospace, etc.) is required to see this signature correctly.
    /\___/\ Ant(Dude) @ http://aqfl.net & http://antfarm.home.dhs.org.
    / /\ /\ \ Please nuke ANT if replying by e-mail.
    | |o o| |
    \ _ /
    ( )

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From RS Wood@21:1/5 to RS Wood on Fri Oct 23 13:48:08 2020
    On 2020-10-23, RS Wood <rsw@therandymon.com> wrote:
    Not sure what to tell you. I just fired up mutt here and "l ~f edu"
    works exactly as expected.

    One thing to look into: how are you accessing your email? I'm using IMAP
    and using muttheadercache variable to keep a local cache of headers.
    That makes the search instantaneous. I can't imagine that's part of
    your problem but it's worth looking into.

    Anyway, there's something going on with your system. I'm using mutt
    1.9.4 (2018-02-28) and what I've described above works perfectly. Good
    luck!

    Another thing I just thought of: check your keybindings to make sure you
    know which key stroke invokes the "limit" command on your system, mutt
    being infintely configurable.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From RS Wood@21:1/5 to Ant on Fri Oct 23 13:43:05 2020
    On 2020-10-23, Ant <ant@zimage.comANT> wrote:
    RS Wood <rsw@therandymon.com> wrote:
    From the index, limit the list of messages to just those with info in
    the address:

    l ~f info (that's a lower case L)

    That didn't work when I tried to search .edu with "l ~f edu". :(
    Not sure what to tell you. I just fired up mutt here and "l ~f edu"
    works exactly as expected.

    One thing to look into: how are you accessing your email? I'm using IMAP
    and using muttheadercache variable to keep a local cache of headers.
    That makes the search instantaneous. I can't imagine that's part of
    your problem but it's worth looking into.

    Anyway, there's something going on with your system. I'm using mutt
    1.9.4 (2018-02-28) and what I've described above works perfectly. Good
    luck!

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Ant@21:1/5 to RS Wood on Fri Oct 23 16:06:56 2020
    RS Wood <rsw@therandymon.com> wrote:
    On 2020-10-23, Ant <ant@zimage.comANT> wrote:
    RS Wood <rsw@therandymon.com> wrote:
    From the index, limit the list of messages to just those with info in
    the address:

    l ~f info (that's a lower case L)

    That didn't work when I tried to search .edu with "l ~f edu". :(
    Not sure what to tell you. I just fired up mutt here and "l ~f edu"
    works exactly as expected.

    When I do a search, I get something like:
    ---Mutt: =sents/sent-09-2020combined [Msgs:0/1361 Old:671 3.5M]---(threads/date)
    To view all messages, limit to "all".

    Basically, I get nothing.


    One thing to look into: how are you accessing your email? I'm using IMAP
    and using muttheadercache variable to keep a local cache of headers.
    That makes the search instantaneous. I can't imagine that's part of
    your problem but it's worth looking into.

    My friend's Fedora v31 shell account box uses local mbox or something. I
    don't know the technical. How can I check? It's pretty fast since he has
    fiber and a Ryzen PC.


    Anyway, there's something going on with your system. I'm using mutt
    1.9.4 (2018-02-28) and what I've described above works perfectly. Good
    luck!

    1.14.6 (2020-07-11). I assume he used a package.
    --
    Life's so loco! ..!.. *isms, sins, hates, (d)evil, illnesses (e.g., COVID-19 & SARS-CoV-2), deaths (RIP), heat (rays), interruptions, issues, conflicts, obstacles, stresses, fires, out(r)ages, dramas, unlucky #4, 2020, greeds, bugs (e.g., crashes &
    female mosquitoes), etc. D:
    Note: A fixed width font (Courier, Monospace, etc.) is required to see this signature correctly.
    /\___/\ Ant(Dude) @ http://aqfl.net & http://antfarm.home.dhs.org.
    / /\ /\ \ Please nuke ANT if replying by e-mail.
    | |o o| |
    \ _ /
    ( )

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From RS Wood@21:1/5 to Ant on Sun Oct 25 21:44:17 2020
    ant@zimage.comANT (Ant) writes:

    My friend's Fedora v31 shell account box uses local mbox or something. I don't know the technical. How can I check? It's pretty fast since he has fiber and a Ryzen PC.

    So, probably local spool. You should start by checking what muttrc you
    are using, and if your shell account doesn't have a dotfile, copy over /etc/Muttrc and begin customizing.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)