diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2016-10-26 18:50:36 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2016-10-26 18:50:36 +0200 |
commit | a37958e13e13a69c0a7c96e97ef21ea5f4c37e38 (patch) | |
tree | 2c5ad5686eff2027ef8215c264cb98bcf7feb08c | |
parent | 62bd0fed942225598b62146bd196c8c6633e5dae (diff) |
Manage reportbugrc
-rwxr-xr-x | install | 2 | ||||
-rw-r--r-- | reportbugrc | 26 |
2 files changed, 27 insertions, 1 deletions
@@ -6,7 +6,7 @@ cd $(dirname $BASH_SOURCE) BASE=$(pwd) # dotfiles to install -for dotfile in bashrc vimrc gitconfig tmux.conf; do +for dotfile in bashrc vimrc gitconfig tmux.conf reportbugrc; do mkdir -pv bak [ -e ~/.$dotfile ] && mv -v ~/.$dotfile bak/.$dotfile ln -sfv $BASE/$dotfile ~/.$dotfile diff --git a/reportbugrc b/reportbugrc new file mode 100644 index 0000000..1df6c88 --- /dev/null +++ b/reportbugrc @@ -0,0 +1,26 @@ +# reportbug preferences file +# Version of reportbug this preferences file was written by +reportbug_version "3.12" +# default operating mode: one of: novice, standard, advanced, expert +mode standard +# default user interface +ui text +# offline setting - comment out to be online +#offline +# name and email setting (if non-default) +realname "Johannes Ranke" +email "jranke@uni-bremen.de" +# Send all outgoing mail via the following host +smtphost "smtp.uni-bremen.de" +# Username and password for SMTP +smtpuser jranke +#smtppasswd "My password here" +# If nothing else works, remove the # at the beginning +# of the following three lines: +#no-cc +#header "X-Debbugs-CC: jranke@uni-bremen.de" +#smtphost master.debian.org +# You can add other settings after this line. See +# /etc/reportbug.conf for a full listing of options. +# Enable TLS for the SMTP host +smtptls |