Ticket #1342: mutt-config.diff
File mutt-config.diff, 2.2 KB (added by rakavan, 11 years ago) |
---|
-
debian/debathena.rc
7 7 # Set MIT IMAP as the location of the inbox and other folders. 8 8 set folder=`/usr/lib/debathena-mutt-config/debathena-mutt-folder` 9 9 set spoolfile=+INBOX 10 set record= +INBOX.sent-mail10 set record=`/usr/lib/debathena-mutt-config/debathena-mutt-record` 11 11 set postponed=+INBOX.postponed-msgs 12 12 13 13 # Use MIT's outgoing SMTP servers. -
debian/debathena-mutt-record
1 #!/bin/sh 2 user=${ATHENA_USER:-$USER} 3 chpobox ${user} | grep 'Type EXCHANGE' > /dev/null 2>&1 4 # grep exist 0 if it matches. 5 EXCHANGE=$? 6 if [ ${EXCHANGE} -eq 0 ]; then 7 # We're using an exchange server, use its setting 8 echo '"=Sent Items"'; 9 else 10 # We're using an IMAP server, keep the old setting 11 echo '"+INBOX.sent-mail"'; 12 fi -
debian/changelog
Property changes on: debian/debathena-mutt-record ___________________________________________________________________ Added: svn:executable + *
7 7 * Switch from control.in to control (Trac: #561) 8 8 * Bump Standards-Version to 3.9.3 9 9 * Bump compat level to 7 10 11 [ Ryan Kavanagh ] 12 * Set the appropriate record location for Exchange users, introduces the 13 debathena-mutt-record script (Trac: #1342) 10 14 11 -- Jonathan Reed <jdreed@mit.edu> Wed, 03 Apr 2013 13:38:46-040015 -- Ryan Kavanagh <rak@debian.org> Fri, 03 May 2013 20:35:24 -0400 12 16 13 17 debathena-mutt-config (1.5) UNRELEASED; urgency=low 14 18 -
debian/debathena-mutt-config.install
1 1 debian/debathena.rc etc/Muttrc.d 2 2 debian/debathena-mutt-folder usr/lib/debathena-mutt-config 3 debian/debathena-mutt-record usr/lib/debathena-mutt-config