Changeset - 1c05801fa45e
[Not reviewed]
0 1 4
Branko Majic (branko) - 6 years ago 2018-06-28 23:27:35
branko@majic.rs
MAR-129: Added configuration files for testsite for mutt and mcabber.
5 files changed with 129 insertions and 1 deletions:
0 comments (0 inline, 0 general)
.gitignore
Show inline comments
 
@@ -24,4 +24,8 @@ testsite/backup_keyring/
 
.yamllint
 

	
 
# Ignore test report artefacts
 
test_report*
 
\ No newline at end of file
 
test_report*
 

	
 
# Ignore test site CLI artefacts.
 
testsite/mutt/*/record
 
testsite/mutt/*/record
 
\ No newline at end of file
testsite/mcabber/jane.doe
Show inline comments
 
new file 100644
 
set jid = jane.doe@example.com
 
set server = xmpp.example.com
 
set password = janedoe
 
set tls = 1
 
set ssl_ignore_checks = 1
 
set cmdhistory_lines = 250
 
set max_history_blocks = 8
 
set message_autoaway = Auto-away (idle)
 
set escdelay = 50
 
alias me = say /me
 
alias online   = status online
 
alias away     = status away
 
alias dnd      = status dnd
 
alias notavail = status notavail
 
# Ctrl-q (17) bound to /roster unread_next
 
bind 17 = roster unread_next
 
# Ctrl-x (24) bound to /roster alternate
 
bind 24 = roster alternate
 
# F5 (269) bound to /roster toggle_offline  (centericq-like, IIRC)
 
bind 269 = roster toggle_offline
 
# F12 (276) bound to /roster toggle
 
bind 276 = roster toggle
 
# Ctrl-Up/Ctrl-Down bound to /buffer up/down  (like Ctrl-p/Ctrl-n)
 
bind 521 = buffer up
 
bind 514 = buffer down
testsite/mcabber/john.doe
Show inline comments
 
new file 100644
 
set jid = john.doe@example.com
 
set server = xmpp.example.com
 
set password = johndoe
 
set tls = 1
 
set ssl_ignore_checks = 1
 
set cmdhistory_lines = 250
 
set max_history_blocks = 8
 
set message_autoaway = Auto-away (idle)
 
set escdelay = 50
 
alias me = say /me
 
alias online   = status online
 
alias away     = status away
 
alias dnd      = status dnd
 
alias notavail = status notavail
 
# Ctrl-q (17) bound to /roster unread_next
 
bind 17 = roster unread_next
 
# Ctrl-x (24) bound to /roster alternate
 
bind 24 = roster alternate
 
# F5 (269) bound to /roster toggle_offline  (centericq-like, IIRC)
 
bind 269 = roster toggle_offline
 
# F12 (276) bound to /roster toggle
 
bind 276 = roster toggle
 
# Ctrl-Up/Ctrl-Down bound to /buffer up/down  (like Ctrl-p/Ctrl-n)
 
bind 521 = buffer up
 
bind 514 = buffer down
testsite/mutt/jane.doe/config
Show inline comments
 
new file 100644
 
# Set some general user information.
 
set realname = "Jane Doe"
 
set from = "jane.doe@example.com"
 
set envelope_from = yes
 

	
 
# Configure IMAP.
 
set imap_user = "jane.doe@example.com"
 
set imap_pass = "janedoe"
 
set folder = imap://mail.example.com/
 

	
 
# Default mailboxes.
 
set spoolfile = "=INBOX"
 
set record = "=Sent Items"
 
set postponed = "=Drafts"
 

	
 
# Configure SMTP.
 
set smtp_url = smtp://jane.doe@example.com@mail.example.com:587/
 
set smtp_pass = $imap_pass
 

	
 
# Configure TLS.
 
set ssl_ca_certificates_file = tls/ca.pem
 

	
 
# Configure convenient shortcut for fetching new mail.
 
bind index G imap-fetch-mail
 

	
 
# Configure various paths explicitly to prevent them from clashing
 
# with user's system-wide files.
 
set alias_file = mutt/jane.doe/config
 
set certificate_file = mutt/jane.doe/certificates
 
set folder = mutt/jane.doe/mail
 
set history_file = mutt/jane.doe/history
 
set mbox = mutt/jane.doe/mbox
 
set news_cache_dir = mutt/jane.doe/news_cache
 
set newsrc = mutt/jane.doe/newsrc
 
set postponed = mutt/jane.doe/postponed
 
set record = mutt/jane.doe/record
 
set signature = mutt/jane.doe/signature
testsite/mutt/john.doe/config
Show inline comments
 
new file 100644
 
# Set some general user information.
 
set realname = "John Doe"
 
set from = "john.doe@example.com"
 
set envelope_from = yes
 

	
 
# Configure IMAP.
 
set imap_user = "john.doe@example.com"
 
set imap_pass = "johndoe"
 
set folder = imap://mail.example.com/
 

	
 
# Default mailboxes.
 
set spoolfile = "=INBOX"
 
set record = "=Sent Items"
 
set postponed = "=Drafts"
 

	
 
# Configure SMTP.
 
set smtp_url = smtp://john.doe@example.com@mail.example.com:587/
 
set smtp_pass = $imap_pass
 

	
 
# Configure TLS.
 
set ssl_ca_certificates_file = tls/ca.pem
 

	
 
# Configure convenient shortcut for fetching new mail.
 
bind index G imap-fetch-mail
 

	
 
# Configure various paths explicitly to prevent them from clashing
 
# with user's system-wide files.
 
set alias_file = mutt/john.doe/config
 
set certificate_file = mutt/john.doe/certificates
 
set folder = mutt/john.doe/mail
 
set history_file = mutt/john.doe/history
 
set mbox = mutt/john.doe/mbox
 
set news_cache_dir = mutt/john.doe/news_cache
 
set newsrc = mutt/john.doe/newsrc
 
set postponed = mutt/john.doe/postponed
 
set record = mutt/john.doe/record
 
set signature = mutt/john.doe/signature
0 comments (0 inline, 0 general)