There're a lot of combinations to manage your email with emacs, but this works for me. I've a backup and I can manage my daily email.
The stack:
- emacs
- offlineimap
- mu
- mu4e
| #!/usr/bin/php | |
| <?php | |
| /** | |
| * Zabbix notification script, used to send zabbix notifications via pushover | |
| * to smartphones like an SMS. | |
| * | |
| * Usage: sendPushoverNotification <pushover-user-key> <subject> <message> | |
| * @author Marijn Koesen | |
| * @version 0.1 |
| #!/bin/sh | |
| # http://vm-192-168-11-21.shengyun.grandcloud.cn/topics/2437 | |
| # redis - this script starts and stops the redis-server daemon | |
| # | |
| # chkconfig: 2345 90 10 | |
| # description: Redis is a persistent key-value database | |
| # processname: redis-server | |
| # config: /etc/redis.conf | |
| # config: /etc/sysconfig/redis | |
| # pidfile: /var/run/redis.pid |
| #!/usr/bin/perl -w | |
| # Author: Konrad "morsik" Mosoń <mosonkonrad@gmail.com> | |
| # linked here: http://wiki.libvirt.org/page/Networking#Applying_modifications_to_the_network | |
| use strict; | |
| use warnings; | |
| my $net = $ARGV[0]; |
| #!/bin/bash | |
| LINES=$(tput lines) | |
| COLUMNS=$(tput cols) | |
| declare -A snowflakes | |
| declare -A lastflakes | |
| clear |
| Options +FollowSymlinks | |
| RewriteEngine on | |
| # No intersticial for direct reference and self-reference | |
| RewriteCond %{HTTP_REFERER} !^$ | |
| RewriteCond %{HTTP_REFERER} !^http(s)?://box.leebyron.com/.*$ [NC] | |
| # Add a line item for every website you don't need an intersticial for | |
| # I've added my own website, gmail and facebook | |
| RewriteCond %{HTTP_REFERER} !^http(s)?://([^\.]*.)?leebyron.com/.*$ [NC] | |
| RewriteCond %{HTTP_REFERER} !^http(s)?://mail.google.com/.*$ [NC] |