Compare commits

...

3 Commits

Author SHA1 Message Date
Jean-Claude 262341bc00
Improve search engines 2024-01-10 18:50:30 +01:00
Jean-Claude bdbe39f991
Register mailing list and use formatter %L over %F 2024-01-06 21:57:56 +01:00
Jean-Claude 346ab4691c
Re-add ml mail address 2024-01-06 21:57:51 +01:00
5 changed files with 78 additions and 4 deletions

View File

@ -154,6 +154,31 @@ SyncState *
MaxMessages 0
ExpireUnread no
## ml@jeanclaudegraf.ch
IMAPStore ml@jeanclaudegraf.ch-remote
Host mail.hosting.de
Port 143
User ml@jeanclaudegraf.ch
PassCmd "pass online/hosting.de/ml@jeanclaudegraf.ch"
SSLType STARTTLS
CertificateFile /etc/ssl/certs/ca-certificates.crt
MaildirStore ml@jeanclaudegraf.ch-local
Subfolders Verbatim
Path ~/.local/share/mail/ml@jeanclaudegraf.ch/
Inbox ~/.local/share/mail/ml@jeanclaudegraf.ch/INBOX
Flatten .
Channel ml@jeanclaudegraf.ch
Expunge Both
Far :ml@jeanclaudegraf.ch-remote:
Near :ml@jeanclaudegraf.ch-local:
Patterns *
Create Both
SyncState *
MaxMessages 0
ExpireUnread no
## jegraf@ethz.ch
IMAPStore jegraf@ethz.ch-remote
Host mail.ethz.ch

View File

@ -44,6 +44,14 @@ from me@jeanclaudegraf.ch
user me@jeanclaudegraf.ch
passwordeval "pass online/hosting.de/me@jeanclaudegraf.ch"
# ml@jeanclaudegraf.ch
account ml@jeanclaudegraf.ch
host mail.hosting.de
port 587
from ml@jeanclaudegraf.ch
user ml@jeanclaudegraf.ch
passwordeval "pass online/hosting.de/ml@jeanclaudegraf.ch"
# bienen@jeanclaudegraf.ch
account bienen@jeanclaudegraf.ch
host mail.hosting.de

View File

@ -0,0 +1,31 @@
# muttrc file for account ml@jeanclaudegraf.ch
## Identification
set realname = "Jean-Claude"
set from = "ml@jeanclaudegraf.ch"
# set sig_dashes = "no"
# set signature = "somePath"
## Cache
set header_cache = "~/.cache/mutt/ml@jeanclaudegraf.ch/headers"
set message_cachedir = "~/.cache/mutt/ml@jeanclaudegraf.ch/bodies"
## Maildir
set mbox_type = Maildir
set folder = "~/.local/share/mail/ml@jeanclaudegraf.ch"
set spoolfile = "+INBOX"
set record = "+Sent"
set postponed = "+Drafts"
set trash = "+Trash"
named-mailboxes "--- ml@jeanclaudegraf.ch ---" ="."
named-mailboxes "Inbox" ="INBOX"
named-mailboxes "Drafts" ="Drafts"
named-mailboxes "Archive" ="Archive"
named-mailboxes "Sent" ="Sent"
named-mailboxes "Trash" ="Trash"
named-mailboxes "Junk" ="Junk"
# Hook Sendmail
set sendmail = "msmtp -a ml@jeanclaudegraf.ch"
# vim: filetype=neomuttrc

View File

@ -11,7 +11,7 @@ set sort = 'last-date-received' # last sorts by last descendant instead of the
set sort_aux = 'date-received'
set date_format="%d/%m/%y %H:%M"
set index_format="%2C %zs %?X?A& ? %D %-15.15F %s (%-4.4c)"
set index_format="%2C %zs %?X?A& ? %D %-15.15L %s (%-4.4c)"
set markers = no # Disables the `+` displayed at line wraps
set mailcap_path = ~/.config/mutt/mailcap
set print_command="/usr/bin/muttprint -r ~/.config/muttprint/muttprintrc"
@ -184,6 +184,9 @@ folder-hook $folder 'source ~/.config/mutt/accounts/git@jeanclaudegraf.ch.muttrc
source "~/.config/mutt/accounts/me@jeanclaudegraf.ch.muttrc"
folder-hook $folder 'source ~/.config/mutt/accounts/me@jeanclaudegraf.ch.muttrc'
source "~/.config/mutt/accounts/ml@jeanclaudegraf.ch.muttrc"
folder-hook $folder 'source ~/.config/mutt/accounts/ml@jeanclaudegraf.ch.muttrc'
source "~/.config/mutt/accounts/bienen@jeanclaudegraf.ch.muttrc"
folder-hook $folder 'source ~/.config/mutt/accounts/bienen@jeanclaudegraf.ch.muttrc'
@ -201,5 +204,7 @@ set query_command = "khard email --parsable %s"
bind editor <Tab> complete-query
bind editor ^T complete
## Mailing Lists
subscribe @lists.archlinux.org
# vim: filetype=neomuttrc

View File

@ -1605,7 +1605,7 @@ c.tabs.mousewheel_switching = False
## used by prepending the search engine name to the search term, e.g.
## `:open google qutebrowser`.
## Type: Dict
c.url.searchengines = {'DEFAULT': 'https://searx.jeanclaudegraf.ch/?q={}',
c.url.searchengines = {'DEFAULT': 'https://duckduckgo.com/?q={}',
'aw': 'https://wiki.archlinux.org/?search={}',
'yt': 'https://www.youtube.com/results?search_query={}',
'gh': 'https://github.com/search?q={}',
@ -1617,9 +1617,14 @@ c.url.searchengines = {'DEFAULT': 'https://searx.jeanclaudegraf.ch/?q={}',
'wd': 'https://de.wikipedia.org/wiki/Special:Search?search={}',
'w': 'https://en.wikipedia.org/wiki/Special:Search?search={}',
'd': 'https://duckduckgo.com/?q={}',
'g': 'https://www.google.com/search?q={}',
'google': 'https://www.google.com/search?q={}',
'so': 'https://stackoverflow.com/search?q={}',
'aur': 'https://aur.archlinux.org/packages?O=0&K={}'
'aur': 'https://aur.archlinux.org/packages?O=0&K={}',
'rs_std': 'https://doc.rust-lang.org/std/index.html?search={}',
'rs': 'https://docs.rs/releases/search?query={}+',
'rs_c': 'https://crates.io/search?q={}',
'pyqt': 'https://doc.qt.io/qtforpython-6/search.html?q={}',
'x86': 'https://www.felixcloutier.com/x86/{}',
}
## Page(s) to open at the start.