123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594 |
- #!/bin/bash
- #
- # .---. . .
- # | | |
- # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
- # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
- # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
- #
- # Freedom in the Cloud
- #
- # User control panel for email
- #
- # License
- # =======
- #
- # Copyright (C) 2016 Bob Mottram <bob@robotics.uk.to>
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU Affero General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU Affero General Public License for more details.
- #
- # You should have received a copy of the GNU Affero General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
-
- PROJECT_NAME='freedombone'
-
- export TEXTDOMAIN=${PROJECT_NAME}-controlpanel-user
- export TEXTDOMAINDIR="/usr/share/locale"
-
- MY_EMAIL_ADDRESS=$USER@$HOSTNAME
- GPG_ID=$(gpg --fingerprint $MY_EMAIL_ADDRESS | grep -i "pub" | head -n 1 | awk -F '/' '{print $2}' | awk -F ' ' '{print $1}')
-
- function any_key {
- echo ' '
- read -n1 -r -p $"Press any key to continue..." key
- }
-
- function remove_user_from_mailing_list {
- USER_MAILING_LISTS=$(cat "/home/$USER/.procmailrc" | grep '\[' | grep '\]' | awk -F '\[' '{print $2}' | awk -F '\\' '{print $1}')
-
- i=0
- W=()
- list_name=()
- while read -r listname; do
- i=$((i+1))
- W+=($i "$listname")
- list_name+=("$listname")
- echo $listname
- done <<< "$USER_MAILING_LISTS"
-
- i=$((i+1))
- W+=($i $"Exit back to user mainenance")
-
- list_selected=$(dialog --default-item "$i" --backtitle $"Freedombone User Control Panel" --title $"Remove yourself from a mailing list" --menu $"Select one of the following:" 24 50 17 "${W[@]}" 3>&2 2>&1 1>&3)
-
- if [ $? -eq 0 ]; then # Exit with OK
- if [ ${list_selected} -ne ${i} ]; then
- remove_list_name="${list_name[$((list_selected-1))]}"
-
- # find the line number where the list is defined
- line_number=0
- i=0
- while read -r line
- do
- if [[ "$line" == *"\[${remove_list_name}\\]"* ]]; then
- line_number=${i}
- fi
- i=$((i+1))
- done < "/home/$USER/.procmailrc"
-
- if [ ${line_number} -eq 0 ]; then
- # no match was found
- return
- fi
-
- # recreate the file
- if [ -f /home/${USER}/.procmailrc_new ]; then
- rm /home/${USER}/.procmailrc_new
- fi
- i=0
- clip=0
- while read -r line
- do
- i=$((i+1))
- if [ ${i} -gt $((line_number-1)) ]; then
- if [ ${clip} -eq 0 ]; then
- clip=1
- fi
- if [ ${clip} -eq 1 ]; then
- if [ ${i} -lt $((line_number+2)) ]; then
- continue
- else
- if [ ${#line} -lt 1 ]; then
- clip=2
- continue
- fi
- if [[ "$line" == ":"* || "$line" == "#"* ]]; then
- clip=2
- else
- continue
- fi
- fi
- fi
- fi
-
- echo "$line" >> /home/${USER}/.procmailrc_new
-
- if [[ "$line" == *"\[${remove_list_name}\\]"* ]]; then
- line_number=${i}
- fi
- done < "/home/$USER/.procmailrc"
- cp /home/${USER}/.procmailrc_new /home/${USER}/.procmailrc
- rm /home/${USER}/.procmailrc_new
- chown ${USER}:${USER} /home/${USER}/.procmailrc
- dialog --title $"Remove yourself from mailing list" \
- --msgbox $"You have been removed from ${remove_list_name}" 6 50
- fi
- fi
- }
-
- function add_to_mailing_list {
- data=$(tempfile 2>/dev/null)
- trap "rm -f $data" 0 1 2 5 15
- dialog --backtitle $"Freedombone User Control Panel" \
- --title $"Subscribe to a mailing list" \
- --form $"You can either enter a subject or an email address\n" 11 68 4 \
- $"List folder name:" 1 1 "" 1 35 26 25 \
- $"Name between [] on subject line:" 2 1 "" 2 35 26 25 \
- $"List email address:" 3 1 "" 3 35 26 25 \
- $"Public:" 4 1 $"yes" 4 35 4 25 \
- 2> $data
- sel=$?
- case $sel in
- 1) return;;
- 255) return;;
- esac
- LIST_NAME=$(cat $data | sed -n 1p)
- LIST_SUBJECT=$(cat $data | sed -n 2p)
- LIST_EMAIL=$(cat $data | sed -n 3p)
- LIST_PUBLIC=$(cat $data | sed -n 4p)
-
- if [ ${#LIST_PUBLIC} -lt 1 ]; then
- LIST_PUBLIC='no'
- fi
- if [[ $LIST_PUBLIC == $'y' || $LIST_PUBLIC == $'Y' || $LIST_PUBLIC == $'true' || $LIST_PUBLIC == $'True' || $LIST_PUBLIC == $'yes' || $LIST_PUBLIC == $'Yes' || $LIST_PUBLIC == $'YES' ]]; then
- LIST_PUBLIC='yes'
- else
- LIST_PUBLIC='no'
- fi
- if [ ${#LIST_NAME} -lt 2 ]; then
- dialog --title $"Add mailing list" \
- --msgbox $"No mailing list name was given" 6 40
- return
- fi
- if [ ${#LIST_SUBJECT} -lt 2 ]; then
- if [ ${#LIST_EMAIL} -lt 2 ]; then
- dialog --title $"Add mailing list" \
- --msgbox $"No mailing list subject or address was given" 6 40
- return
- fi
- fi
- if [ ${#LIST_SUBJECT} -gt 1 ]; then
- ${PROJECT_NAME}-addlist -u $USER -l "$LIST_NAME" \
- -s "$LIST_SUBJECT" --public $LIST_PUBLIC
- else
- if [[ "$LIST_EMAIL" != *"@"* || "$LIST_EMAIL" != *"."* ]]; then
- dialog --title $"Add mailing list" \
- --msgbox $"Unrecognised email address" 6 40
- return
- else
- ${PROJECT_NAME}-addlist -u $USER -l "$LIST_NAME" \
- -e "$LIST_EMAIL" --public $LIST_PUBLIC
- fi
- fi
-
- dialog --title $"Add mailing list" \
- --msgbox $"$LIST_NAME list was added" 6 40
- }
-
- function email_rule_address {
- data=$(tempfile 2>/dev/null)
- trap "rm -f $data" 0 1 2 5 15
- dialog --backtitle $"Freedombone User Control Panel" \
- --title $"Create an email rule" \
- --form "\n" 9 65 4 \
- $"When email arrives from address:" 1 1 "" 1 35 24 28 \
- $"Move to folder:" 2 1 "" 2 35 24 28 \
- $"Public:" 3 1 $"no" 3 35 4 25 \
- 2> $data
- sel=$?
- case $sel in
- 1) return;;
- 255) return;;
- esac
- RULE_EMAIL=$(cat $data | sed -n 1p)
- RULE_FOLDER=$(cat $data | sed -n 2p)
- RULE_PUBLIC=$(cat $data | sed -n 3p)
-
- if [ ${#RULE_PUBLIC} -lt 1 ]; then
- RULE_PUBLIC='no'
- fi
- if [[ $RULE_PUBLIC == $'y' || $RULE_PUBLIC == $'Y' || $RULE_PUBLIC == $'true' || $RULE_PUBLIC == $'True' || $RULE_PUBLIC == $'yes' || $RULE_PUBLIC == $'Yes' || $RULE_PUBLIC == $'YES' ]]; then
- RULE_PUBLIC='yes'
- else
- RULE_PUBLIC='no'
- fi
- if [ ${#RULE_EMAIL} -lt 2 ]; then
- dialog --title $"Create an email rule" \
- --msgbox $"No email address was given" 6 40
- return
- fi
- if [ ${#RULE_FOLDER} -lt 2 ]; then
- dialog --title $"Create an email rule" \
- --msgbox $"No folder name was given" 6 40
- return
- fi
- if [[ "$RULE_EMAIL" != *"@"* || "$RULE_EMAIL" != *"."* ]]; then
- dialog --title $"Create an email rule" \
- --msgbox $"Unrecognised email address" 6 40
- return
- fi
-
- ${PROJECT_NAME}-addemail -u $USER -e "$RULE_EMAIL" \
- -g "$RULE_FOLDER" --public $RULE_PUBLIC
- dialog --title $"Create an email rule" \
- --msgbox $"Email rule for $RULE_EMAIL was added" 6 40
- }
-
- function email_rule_subject {
- data=$(tempfile 2>/dev/null)
- trap "rm -f $data" 0 1 2 5 15
- dialog --backtitle $"Freedombone User Control Panel" \
- --title $"Create an email rule" \
- --form "\n" 9 75 4 \
- $"When email arrives with subject containing:" 1 1 "" 1 45 24 28 \
- $"Move to folder:" 2 1 "" 2 45 24 28 \
- $"Public:" 3 1 $"no" 3 45 4 25 \
- 2> $data
- sel=$?
- case $sel in
- 1) return;;
- 255) return;;
- esac
- RULE_SUBJECT=$(cat $data | sed -n 1p)
- RULE_FOLDER=$(cat $data | sed -n 2p)
- RULE_PUBLIC=$(cat $data | sed -n 3p)
-
- if [ ${#RULE_PUBLIC} -lt 1 ]; then
- RULE_PUBLIC='no'
- fi
- if [[ $RULE_PUBLIC == $'y' || $RULE_PUBLIC == $'Y' || $RULE_PUBLIC == $'true' || $RULE_PUBLIC == $'True' || $RULE_PUBLIC == $'yes' || $RULE_PUBLIC == $'Yes' || $RULE_PUBLIC == $'YES' ]]; then
- RULE_PUBLIC='yes'
- else
- RULE_PUBLIC='no'
- fi
- if [ ${#RULE_SUBJECT} -lt 2 ]; then
- dialog --title $"Create an email rule" \
- --msgbox $"No subject text was given" 6 40
- return
- fi
- if [ ${#RULE_FOLDER} -lt 2 ]; then
- dialog --title $"Create an email rule" \
- --msgbox $"No folder name was given" 6 40
- return
- fi
-
- ${PROJECT_NAME}-addemail -u $USER -s "$RULE_SUBJECT" \
- -g "$RULE_FOLDER" --public $RULE_PUBLIC
- dialog --title $"Create an email rule" \
- --msgbox $"Email rule for subject '$RULE_SUBJECT' was added" 6 40
- }
-
- function block_unblock_email {
- blockstr=$"Block or unblock emails from a given address"
- data=$(tempfile 2>/dev/null)
- trap "rm -f $data" 0 1 2 5 15
- dialog --backtitle $"Freedombone User Control Panel" \
- --title "$blockstr" \
- --form "\n" 8 65 3 \
- $"When email arrives from address:" 1 1 "" 1 35 24 100 \
- $"Block it:" 2 1 "yes" 2 35 4 4 \
- 2> $data
- sel=$?
- case $sel in
- 1) return;;
- 255) return;;
- esac
- BLOCK_EMAIL=$(cat $data | sed -n 1p)
- BLOCK=$(cat $data | sed -n 2p)
- if [ ${#BLOCK_EMAIL} -lt 2 ]; then
- dialog --title "$blockstr" \
- --msgbox $"No email address was given" 6 40
- return
- fi
- if [[ "$BLOCK_EMAIL" != *"@"* || "$BLOCK_EMAIL" != *"."* ]]; then
- dialog --title "$blockstr" \
- --msgbox $"Unrecognised email address" 6 40
- return
- fi
- if [[ $BLOCK == "y"* || $BLOCK == "Y"* ]]; then
- ${PROJECT_NAME}-ignore -u $USER -e "$BLOCK_EMAIL"
- dialog --title $"Block an email" \
- --msgbox "Email from $BLOCK_EMAIL is now blocked" 6 75
- else
- ${PROJECT_NAME}-unignore -u $USER -e "$BLOCK_EMAIL"
- dialog --title $"Unblock an email" \
- --msgbox "Email from $BLOCK_EMAIL is now unblocked" 6 75
- fi
- }
-
- function block_unblock_subject {
- blockstr=$"Block or unblock emails with text in the subject line"
- data=$(tempfile 2>/dev/null)
- trap "rm -f $data" 0 1 2 5 15
- dialog --backtitle $"Freedombone User Control Panel" \
- --title "$blockstr" \
- --form "\n" 8 70 3 \
- $"When email arrives with subject text:" 1 1 "" 1 40 24 28 \
- $"Block it:" 2 1 "yes" 2 40 4 4 \
- 2> $data
- sel=$?
- case $sel in
- 1) return;;
- 255) return;;
- esac
- BLOCK_SUBJECT=$(cat $data | sed -n 1p)
- BLOCK=$(cat $data | sed -n 2p)
- if [ ${#BLOCK_SUBJECT} -lt 2 ]; then
- dialog --title "$blockstr" \
- --msgbox $"No subject was given" 6 40
- return
- fi
- if [[ $BLOCK == "y"* || $BLOCK == "Y"* ]]; then
- ${PROJECT_NAME}-ignore -u $USER -t "$BLOCK_SUBJECT"
- dialog --title $"Block an email" \
- --msgbox $"Email with subject $BLOCK_SUBJECT is now blocked" 6 40
- else
- ${PROJECT_NAME}-unignore -u $USER -t "$BLOCK_SUBJECT"
- dialog --title $"Unblock an email" \
- --msgbox $"Email with subject $BLOCK_SUBJECT is now unblocked" 6 40
- fi
- }
-
- function show_gpg_key {
- GPG_FINGERPRINT=$(gpg --fingerprint $MY_EMAIL_ADDRESS | grep -i "key fingerprint" | head -n 1 | awk -F '= ' '{print $2}')
- GPG_DATE=$(gpg --fingerprint $MY_EMAIL_ADDRESS | grep -i "pub" | head -n 1 | awk -F '/' '{print $2}' | awk -F ' ' '{print $2}')
- dialog --title $"Your PGP/GPG Key" \
- --backtitle $"Freedombone User Control Panel" \
- --msgbox $"Email Address: $MY_EMAIL_ADDRESS\n\nKey ID: $GPG_ID\n\nFingerprint: $GPG_FINGERPRINT\n\nCreated: $GPG_DATE" 12 70
- }
-
- function publish_gpg_key {
- gpg --send-key $GPG_ID
- dialog --title $"Publish your PGP/GPG key" \
- --msgbox $"Your key has now been published" 6 40
- }
-
- function add_gpg_key {
- data=$(tempfile 2>/dev/null)
- trap "rm -f $data" 0 1 2 5 15
- dialog --title $"Add someone's PGP/GPG key" \
- --backtitle $"Freedombone User Control Panel" \
- --inputbox $"Enter their email address below" 8 60 2>$data
- sel=$?
- case $sel in
- 0)
- ADD_EMAIL_ADDRESS=$(<$data)
- if [ ${#ADD_EMAIL_ADDRESS} -gt 2 ]; then
- if [[ $ADD_EMAIL_ADDRESS == *"@"* && $ADD_EMAIL_ADDRESS == *"."* ]]; then
- clear
- gpg --search-keys $ADD_EMAIL_ADDRESS
- else
- dialog --title $"Unrecognised email address" \
- --backtitle $"Freedombone User Control Panel" \
- --msgbox $"This doesn't look like an email address" 6 50
- fi
- fi
- ;;
- esac
- }
-
- function remove_gpg_key {
- data=$(tempfile 2>/dev/null)
- trap "rm -f $data" 0 1 2 5 15
- dialog --title $"Remove someone's PGP/GPG key" \
- --backtitle $"Freedombone User Control Panel" \
- --inputbox $"Enter their email address below" 8 60 2>$data
- sel=$?
- case $sel in
- 0)
- REMOVE_EMAIL_ADDRESS=$(<$data)
- if [ ${#REMOVE_EMAIL_ADDRESS} -gt 2 ]; then
- if [[ $REMOVE_EMAIL_ADDRESS == *"@"* && $REMOVE_EMAIL_ADDRESS == *"."* ]]; then
- if [[ $REMOVE_EMAIL_ADDRESS != $MY_EMAIL_ADDRESS ]]; then
- clear
- gpg --delete-key $REMOVE_EMAIL_ADDRESS
- else
- dialog --title $"Remove someone's PGP/GPG key" \
- --backtitle $"Freedombone User Control Panel" \
- --msgbox $"It's not a good idea to remove your own encryption key" 6 65
- fi
- else
- dialog --title $"Unrecognised email address" \
- --backtitle $"Freedombone User Control Panel" \
- --msgbox $"This doesn't look like an email address" 6 50
- fi
- fi
- ;;
- esac
- }
-
- function add_ssh_key {
- data=$(tempfile 2>/dev/null)
- trap "rm -f $data" 0 1 2 5 15
- dialog --title $"Add an ssh key for logging in" \
- --backtitle $"Freedombone User Control Panel" \
- --inputbox $"This will allow you to log into ${PROJECT_NAME} if you have an ssh key on your system, and provides much stronger security than simply using a login password.\n\nWARNING: If you make any mistakes here then you may not be able to log in and will need to get the administrator to clear your ssh authorized_keys file." 15 60 2>$data
- sel=$?
- case $sel in
- 0)
- SSH_PUBLIC_KEY=$(<$data)
- if [ ${#SSH_PUBLIC_KEY} -gt 20 ]; then
- if [[ "$SSH_PUBLIC_KEY" == "ssh-"* ]]; then
- if [ ! -d /home/$USER/.ssh ]; then
- mkdir /home/$USER/.ssh
- fi
- if [ ! -f /home/$USER/.ssh/authorized_keys ]; then
- touch /home/$USER/.ssh/authorized_keys
- fi
- if ! grep -q "$SSH_PUBLIC_KEY" /home/$USER/.ssh/authorized_keys; then
- echo "$SSH_PUBLIC_KEY" >> /home/$USER/.ssh/authorized_keys
- dialog --title $"New ssh key added" \
- --backtitle $"Freedombone User Control Panel" \
- --msgbox $"Your ssh key has now been added" 6 50
- else
- dialog --title $"ssh key already added" \
- --backtitle $"Freedombone User Control Panel" \
- --msgbox $"That ssh key has already been added" 6 50
- fi
- else
- dialog --title $"Unrecognised ssh public key" \
- --backtitle $"Freedombone User Control Panel" \
- --msgbox $"This doesn't look like an ssh key" 6 50
- fi
- fi
- ;;
- esac
- }
-
- function remove_ssh_key {
- data=$(tempfile 2>/dev/null)
- trap "rm -f $data" 0 1 2 5 15
- dialog --title $"Remove an ssh key for logging in" \
- --backtitle $"Freedombone User Control Panel" \
- --inputbox $"Enter the ssh public key which is to be removed. This can be just the address at the end.\n\nWARNING: If you make any mistakes here then you may not be able to log in and will need to get the administrator to clear your ssh authorized_keys file." 15 60 2>$data
- sel=$?
- case $sel in
- 0)
- SSH_PUBLIC_KEY=$(<$data)
- if [ ${#SSH_PUBLIC_KEY} -gt 5 ]; then
- if [ -f /home/$USER/.ssh/authorized_keys ]; then
- sed -i "s|.*${SSH_PUBLIC_KEY}.*||g" /home/$USER/.ssh/authorized_keys
- dialog --title $"Remove an ssh public key" \
- --backtitle $"Freedombone User Control Panel" \
- --msgbox $"The ssh key has been removed" 6 50
- fi
- fi
- ;;
- esac
- }
-
- function menu_encryption_keys {
- while true
- do
- data=$(tempfile 2>/dev/null)
- trap "rm -f $data" 0 1 2 5 15
- dialog --backtitle $"Freedombone User Control Panel" \
- --title $"Your Encryption Keys" \
- --radiolist $"Choose an operation:" 15 70 7 \
- 1 $"Show your PGP/GPG key" off \
- 2 $"Publish your PGP/GPG key so that others can find it" off \
- 3 $"Add someone's PGP/GPG key" off \
- 4 $"Remove someone's PGP/GPG key" off \
- 5 $"Add an ssh key for logging in" off \
- 6 $"Remove an ssh key for logging in" off \
- 7 $"Back to main menu" on 2> $data
- sel=$?
- case $sel in
- 1) break;;
- 255) break;;
- esac
- case $(cat $data) in
- 1) show_gpg_key;;
- 2) publish_gpg_key;;
- 3) add_gpg_key;;
- 4) remove_gpg_key;;
- 5) add_ssh_key;;
- 6) remove_ssh_key;;
- 7) break;;
- esac
- done
- }
-
- function menu_email {
- while true
- do
- data=$(tempfile 2>/dev/null)
- trap "rm -f $data" 0 1 2 5 15
- dialog --backtitle $"Freedombone User Control Panel" \
- --title $"Change Email Filtering Rules" \
- --radiolist $"Choose an operation:" 14 70 7 \
- 1 $"Add yourself to a mailing list" off \
- 2 $"Remove yourself from a mailing list" off \
- 3 $"Add an email rule for an address" off \
- 4 $"Add an email rule for a subject" off \
- 5 $"Block or unblock an email address" off \
- 6 $"Block or unblock email with subject text" off \
- 7 $"Back to main menu" on 2> $data
- sel=$?
- case $sel in
- 1) break;;
- 255) break;;
- esac
- case $(cat $data) in
- 1) add_to_mailing_list;;
- 2) remove_user_from_mailing_list;;
- 3) email_rule_address;;
- 4) email_rule_subject;;
- 5) block_unblock_email;;
- 6) block_unblock_subject;;
- 7) break;;
- esac
- done
- }
-
- function menu_admin {
- if [ ! -f /etc/sudoers ]; then
- clear
- exit 0
- fi
- if grep -q "$USER ALL=(ALL) ALL" /etc/sudoers; then
- sudo freedombone-controlpanel
- else
- clear
- exit 0
- fi
- }
-
- function menu_top_level {
- while true
- do
- data=$(tempfile 2>/dev/null)
- trap "rm -f $data" 0 1 2 5 15
- dialog --backtitle $"Freedombone User Control Panel" \
- --title $"User Control Panel" \
- --radiolist $"Choose an operation:" 16 50 9 \
- 1 $"Use Email" off \
- 2 $"Change Email Filtering Rules" off \
- 3 $"Use Tox Chat" off \
- 4 $"Use XMPP Chat" off \
- 5 $"Use IRC" off \
- 6 $"Your Encryption Keys" off \
- 7 $"Administrator controls" off \
- 8 $"Exit to the command line" off \
- 9 $"Log out" on 2> $data
- sel=$?
- case $sel in
- 1) exit 1;;
- 255) exit 1;;
- esac
- case $(cat $data) in
- 1) mutt;;
- 2) menu_email;;
- 3) toxic --force-tcp --SOCKS5-proxy 127.0.0.1 9050;;
- 4) torify profanity;;
- 5) torify irssi;;
- 6) menu_encryption_keys;;
- 7) menu_admin;;
- 8) break;;
- 9) kill -HUP `pgrep -s 0 -o`;;
- esac
- done
- }
-
- menu_top_level
- clear
- . ~/.bashrc
- exit 0
|