34 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| #feedreader &>/dev/null &
 | |
| #jami-gnome &>/dev/null &
 | |
| #nicotine &>/dev/null &
 | |
| #qbittorrent &>/dev/null &
 | |
| #vdirsyncer sync
 | |
| 
 | |
| #if [ "$(host -t a wg.rezine.org 9.9.9.9 2>/dev/null | grep -o ' has address .*')" != "$(host -t a wg.rezine.org 2>/dev/null | grep -o ' has address .*')" ] ; then
 | |
| #	echo "-------------------------"
 | |
| #	echo ""
 | |
| #	echo "wg.rezine.org seems to have changed, you mail need to update your /etc/dnsmasq.conf"
 | |
| #	notify-send "Consistency check" "wg.rezine.org seems to have changed, you mail need to update your /etc/dnsmasq.conf"
 | |
| #	echo ""
 | |
| #	echo "-------------------------"
 | |
| #	sleep 3
 | |
| #fi
 | |
| 
 | |
| 
 | |
| auth="$(xauth extract - "$DISPLAY" | base64)"
 | |
| sudo -u emails bash <<EOF
 | |
| echo 'Setup xauthority'
 | |
| echo -n '$auth' | base64 -d > ~/.Xauthority
 | |
| 
 | |
| . ~/.bashrc
 | |
| 
 | |
| if [ -n "\$(find ~/.mails/collected_addresses.txt -mtime +24)" ] ; then
 | |
| 	echo 'Recollect mail addresses'
 | |
| 	(cat ~/.mails/collected_addresses.txt ; notmuch address --output sender '*' ; notmuch address --output recipients '*') | grep -vP "<.*[\x00-\x1F\x7F-\xFF].*>" | grep -vP "[\x00-\x1F\x7F-\xFF]\S*@" | grep -vP "@\S*[\x00-\x1F\x7F-\xFF]" | sort -u > ~/.mails/collected_addresses.txt
 | |
| fi
 | |
| birthday_reminder ~/.contacts/bdays/collection-root/dav/4702d4b7-8edd-7b56-ab9c-c11a64d883a3 >/dev/null
 | |
| syncmails
 | |
| EOF
 |