├── README ├── apache ├── .htaccess ├── custom │ ├── virtual_host.conf │ ├── virtual_host2.conf │ ├── virtual_host2.conf.CUSTOM.4.post │ ├── virtual_host2_secure.conf │ ├── virtual_host2_secure.conf.CUSTOM.4.post │ ├── virtual_host2_sub.conf │ └── virtual_host_sub.conf ├── deploy_vhost_templates.sh ├── deploymailadmin.sh ├── fixapache.sh ├── index.html └── killuserdir.sh ├── bin └── mxbin ├── botnetunblock.sh ├── cpanel ├── dovecot │ ├── dovecot_hook.sh │ └── usr │ │ └── sbin │ │ └── dovecot_cpshutdown ├── fixeximstats.sh └── fuckmysql.sh ├── crossbox └── crossbox-da-skin.sh ├── csf.conf ├── csfgoogle.sh ├── deploy.sh ├── deploy_updates.sh ├── directadmin ├── bubblewrap.sh ├── configure_disk_usage.sh ├── customtemplates.sh ├── dovecotquotafix.sh ├── emailaudit.sh ├── evolution │ ├── files │ │ ├── menu-v2.json │ │ └── options-v3.json │ └── user_options.json ├── fix_domain_ownership.sh ├── fixdns.sh ├── killautoresponders.sh ├── localoff.sh ├── localon.sh ├── pop_disk_usage_cache.sh ├── renew_ssl_certs.sh ├── scripts │ └── custom │ │ └── domain_create_post.sh ├── templates │ └── custom │ │ ├── dns_a.conf │ │ ├── dns_mx.conf │ │ ├── dns_txt.conf │ │ └── forbidden_domains.list ├── updatetheme.sh └── updatetheme.sh.old ├── dns ├── dns.sh ├── monitor_dns.sh ├── resolv.conf ├── resolv.conf.safety └── unbound_deploy.sh ├── dovecot ├── 90-quota.conf ├── 90-sieve.conf ├── countios.sh ├── mail_max_userip_connections.conf ├── normalizelogs.sh ├── sieve_custom.sh └── update_dovecot.sh ├── exim ├── add_bulk_acls.sh ├── bannedspoofing ├── bounce_old_junk.sh ├── check_overquota.sh ├── clearcertlogs.sh ├── deploy_exim_conf.sh ├── deploy_helo_blocks.sh ├── easy │ ├── check_message.conf │ ├── variables.conf │ └── variables.conf.custom ├── exim.acl_check_helo.pre.conf ├── exim.acl_check_message.pre.conf ├── exim.acl_check_recipient.pre.conf ├── exim.conf ├── exim.dkim.conf ├── exim.routers.pre.conf ├── exim.strings.conf.custom ├── exim.transports.pre.conf ├── exim.variables.conf.custom ├── filter_exim_logs.sh ├── fixqueue.sh ├── gather_invalids.sh ├── heloblocks ├── move_mxrbl_to_sa.sh ├── ovhranges ├── quotamitigation.sh ├── spam_recipients ├── spoofcheck.sh ├── susranges ├── susranges_whitelist ├── system_filter.exim ├── toprecipient.sh ├── update_acls.sh ├── update_exim.sh ├── update_spam_recipients.sh └── warmup_sender_acl_deploy.sh ├── fuckingbounces.sh ├── misc └── clean_unblockme.sh ├── resolv.conf ├── resolvconf.sh ├── roundcube ├── managesieve │ └── config.inc.php └── update_roundcube.sh ├── runqueue.sh ├── sec ├── bfblock.sh ├── botnet.list ├── botnet.sh ├── bruteforcetrends.sh ├── check_google_blocks.sh ├── check_mx.sh ├── cleanblackholes.sh ├── csfadjust.sh ├── exim-blackhole.sh ├── facebook.sh ├── facebook_ips ├── feb2025botnet.sh ├── polkit.sh ├── quickgmailhit.sh ├── ransom.list ├── ransom.sh ├── redoblackholes.sh ├── senderverifyfailed.sh ├── suswlunblock.sh ├── unfuckthesenetworks.sh └── worst.sh ├── services ├── bye_afterlogic.sh ├── installcloudsend.sh ├── update_php73.sh └── update_services.sh ├── snappy ├── fix_ssl_redirect.sh ├── remove.sh ├── snappy_install.sh └── update_snappy.sh ├── spamassassin ├── deploy_sa.sh ├── deploykam.sh ├── enable_spamd.sh ├── failuremitigation.sh ├── fixchildren.sh ├── local.cf ├── migrate_to_sa.sh └── update_rules.sh ├── syslog-ng.sh └── update_limits.sh /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/README -------------------------------------------------------------------------------- /apache/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/apache/.htaccess -------------------------------------------------------------------------------- /apache/custom/virtual_host.conf: -------------------------------------------------------------------------------- 1 | # Cleaned out 2 | -------------------------------------------------------------------------------- /apache/custom/virtual_host2.conf: -------------------------------------------------------------------------------- 1 | |CUSTOM4| 2 | -------------------------------------------------------------------------------- /apache/custom/virtual_host2.conf.CUSTOM.4.post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/apache/custom/virtual_host2.conf.CUSTOM.4.post -------------------------------------------------------------------------------- /apache/custom/virtual_host2_secure.conf: -------------------------------------------------------------------------------- 1 | |CUSTOM4| 2 | -------------------------------------------------------------------------------- /apache/custom/virtual_host2_secure.conf.CUSTOM.4.post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/apache/custom/virtual_host2_secure.conf.CUSTOM.4.post -------------------------------------------------------------------------------- /apache/custom/virtual_host2_sub.conf: -------------------------------------------------------------------------------- 1 | # Cleaned out 2 | -------------------------------------------------------------------------------- /apache/custom/virtual_host_sub.conf: -------------------------------------------------------------------------------- 1 | # Cleaned out 2 | -------------------------------------------------------------------------------- /apache/deploy_vhost_templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/apache/deploy_vhost_templates.sh -------------------------------------------------------------------------------- /apache/deploymailadmin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/apache/deploymailadmin.sh -------------------------------------------------------------------------------- /apache/fixapache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/apache/fixapache.sh -------------------------------------------------------------------------------- /apache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/apache/index.html -------------------------------------------------------------------------------- /apache/killuserdir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/apache/killuserdir.sh -------------------------------------------------------------------------------- /bin/mxbin: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl -F 'sprunge=<-' https://mxbin.io 4 | -------------------------------------------------------------------------------- /botnetunblock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/botnetunblock.sh -------------------------------------------------------------------------------- /cpanel/dovecot/dovecot_hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/cpanel/dovecot/dovecot_hook.sh -------------------------------------------------------------------------------- /cpanel/dovecot/usr/sbin/dovecot_cpshutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/cpanel/dovecot/usr/sbin/dovecot_cpshutdown -------------------------------------------------------------------------------- /cpanel/fixeximstats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/cpanel/fixeximstats.sh -------------------------------------------------------------------------------- /cpanel/fuckmysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/cpanel/fuckmysql.sh -------------------------------------------------------------------------------- /crossbox/crossbox-da-skin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/crossbox/crossbox-da-skin.sh -------------------------------------------------------------------------------- /csf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/csf.conf -------------------------------------------------------------------------------- /csfgoogle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/csfgoogle.sh -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/deploy.sh -------------------------------------------------------------------------------- /deploy_updates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/deploy_updates.sh -------------------------------------------------------------------------------- /directadmin/bubblewrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/bubblewrap.sh -------------------------------------------------------------------------------- /directadmin/configure_disk_usage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/configure_disk_usage.sh -------------------------------------------------------------------------------- /directadmin/customtemplates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/customtemplates.sh -------------------------------------------------------------------------------- /directadmin/dovecotquotafix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/dovecotquotafix.sh -------------------------------------------------------------------------------- /directadmin/emailaudit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/emailaudit.sh -------------------------------------------------------------------------------- /directadmin/evolution/files/menu-v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/evolution/files/menu-v2.json -------------------------------------------------------------------------------- /directadmin/evolution/files/options-v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/evolution/files/options-v3.json -------------------------------------------------------------------------------- /directadmin/evolution/user_options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/evolution/user_options.json -------------------------------------------------------------------------------- /directadmin/fix_domain_ownership.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/fix_domain_ownership.sh -------------------------------------------------------------------------------- /directadmin/fixdns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/fixdns.sh -------------------------------------------------------------------------------- /directadmin/killautoresponders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/killautoresponders.sh -------------------------------------------------------------------------------- /directadmin/localoff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/localoff.sh -------------------------------------------------------------------------------- /directadmin/localon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/localon.sh -------------------------------------------------------------------------------- /directadmin/pop_disk_usage_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/pop_disk_usage_cache.sh -------------------------------------------------------------------------------- /directadmin/renew_ssl_certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/renew_ssl_certs.sh -------------------------------------------------------------------------------- /directadmin/scripts/custom/domain_create_post.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/scripts/custom/domain_create_post.sh -------------------------------------------------------------------------------- /directadmin/templates/custom/dns_a.conf: -------------------------------------------------------------------------------- 1 | |*if IS_IPV6!="yes"| 2 | |*endif| 3 | -------------------------------------------------------------------------------- /directadmin/templates/custom/dns_mx.conf: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /directadmin/templates/custom/dns_txt.conf: -------------------------------------------------------------------------------- 1 | |DOMAIN|.="v=spf1 include:mxroute.com -all" 2 | -------------------------------------------------------------------------------- /directadmin/templates/custom/forbidden_domains.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/templates/custom/forbidden_domains.list -------------------------------------------------------------------------------- /directadmin/updatetheme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/updatetheme.sh -------------------------------------------------------------------------------- /directadmin/updatetheme.sh.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/directadmin/updatetheme.sh.old -------------------------------------------------------------------------------- /dns/dns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/dns/dns.sh -------------------------------------------------------------------------------- /dns/monitor_dns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/dns/monitor_dns.sh -------------------------------------------------------------------------------- /dns/resolv.conf: -------------------------------------------------------------------------------- 1 | nameserver 136.175.111.1 2 | -------------------------------------------------------------------------------- /dns/resolv.conf.safety: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/dns/resolv.conf.safety -------------------------------------------------------------------------------- /dns/unbound_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/dns/unbound_deploy.sh -------------------------------------------------------------------------------- /dovecot/90-quota.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/dovecot/90-quota.conf -------------------------------------------------------------------------------- /dovecot/90-sieve.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/dovecot/90-sieve.conf -------------------------------------------------------------------------------- /dovecot/countios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/dovecot/countios.sh -------------------------------------------------------------------------------- /dovecot/mail_max_userip_connections.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/dovecot/mail_max_userip_connections.conf -------------------------------------------------------------------------------- /dovecot/normalizelogs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/dovecot/normalizelogs.sh -------------------------------------------------------------------------------- /dovecot/sieve_custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/dovecot/sieve_custom.sh -------------------------------------------------------------------------------- /dovecot/update_dovecot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/dovecot/update_dovecot.sh -------------------------------------------------------------------------------- /exim/add_bulk_acls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/add_bulk_acls.sh -------------------------------------------------------------------------------- /exim/bannedspoofing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/bannedspoofing -------------------------------------------------------------------------------- /exim/bounce_old_junk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/bounce_old_junk.sh -------------------------------------------------------------------------------- /exim/check_overquota.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/check_overquota.sh -------------------------------------------------------------------------------- /exim/clearcertlogs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/clearcertlogs.sh -------------------------------------------------------------------------------- /exim/deploy_exim_conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/deploy_exim_conf.sh -------------------------------------------------------------------------------- /exim/deploy_helo_blocks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/deploy_helo_blocks.sh -------------------------------------------------------------------------------- /exim/easy/check_message.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/easy/check_message.conf -------------------------------------------------------------------------------- /exim/easy/variables.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/easy/variables.conf -------------------------------------------------------------------------------- /exim/easy/variables.conf.custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/easy/variables.conf.custom -------------------------------------------------------------------------------- /exim/exim.acl_check_helo.pre.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/exim.acl_check_helo.pre.conf -------------------------------------------------------------------------------- /exim/exim.acl_check_message.pre.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/exim.acl_check_message.pre.conf -------------------------------------------------------------------------------- /exim/exim.acl_check_recipient.pre.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/exim.acl_check_recipient.pre.conf -------------------------------------------------------------------------------- /exim/exim.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/exim.conf -------------------------------------------------------------------------------- /exim/exim.dkim.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/exim.dkim.conf -------------------------------------------------------------------------------- /exim/exim.routers.pre.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/exim.routers.pre.conf -------------------------------------------------------------------------------- /exim/exim.strings.conf.custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/exim.strings.conf.custom -------------------------------------------------------------------------------- /exim/exim.transports.pre.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/exim.transports.pre.conf -------------------------------------------------------------------------------- /exim/exim.variables.conf.custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/exim.variables.conf.custom -------------------------------------------------------------------------------- /exim/filter_exim_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/filter_exim_logs.sh -------------------------------------------------------------------------------- /exim/fixqueue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/fixqueue.sh -------------------------------------------------------------------------------- /exim/gather_invalids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/gather_invalids.sh -------------------------------------------------------------------------------- /exim/heloblocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/heloblocks -------------------------------------------------------------------------------- /exim/move_mxrbl_to_sa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/move_mxrbl_to_sa.sh -------------------------------------------------------------------------------- /exim/ovhranges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/ovhranges -------------------------------------------------------------------------------- /exim/quotamitigation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/quotamitigation.sh -------------------------------------------------------------------------------- /exim/spam_recipients: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/spam_recipients -------------------------------------------------------------------------------- /exim/spoofcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/spoofcheck.sh -------------------------------------------------------------------------------- /exim/susranges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/susranges -------------------------------------------------------------------------------- /exim/susranges_whitelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/susranges_whitelist -------------------------------------------------------------------------------- /exim/system_filter.exim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/system_filter.exim -------------------------------------------------------------------------------- /exim/toprecipient.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/toprecipient.sh -------------------------------------------------------------------------------- /exim/update_acls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/update_acls.sh -------------------------------------------------------------------------------- /exim/update_exim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/update_exim.sh -------------------------------------------------------------------------------- /exim/update_spam_recipients.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/update_spam_recipients.sh -------------------------------------------------------------------------------- /exim/warmup_sender_acl_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/exim/warmup_sender_acl_deploy.sh -------------------------------------------------------------------------------- /fuckingbounces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/fuckingbounces.sh -------------------------------------------------------------------------------- /misc/clean_unblockme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/misc/clean_unblockme.sh -------------------------------------------------------------------------------- /resolv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/resolv.conf -------------------------------------------------------------------------------- /resolvconf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/resolvconf.sh -------------------------------------------------------------------------------- /roundcube/managesieve/config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/roundcube/managesieve/config.inc.php -------------------------------------------------------------------------------- /roundcube/update_roundcube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/roundcube/update_roundcube.sh -------------------------------------------------------------------------------- /runqueue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/runqueue.sh -------------------------------------------------------------------------------- /sec/bfblock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/bfblock.sh -------------------------------------------------------------------------------- /sec/botnet.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/botnet.list -------------------------------------------------------------------------------- /sec/botnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/botnet.sh -------------------------------------------------------------------------------- /sec/bruteforcetrends.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/bruteforcetrends.sh -------------------------------------------------------------------------------- /sec/check_google_blocks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/check_google_blocks.sh -------------------------------------------------------------------------------- /sec/check_mx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/check_mx.sh -------------------------------------------------------------------------------- /sec/cleanblackholes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/cleanblackholes.sh -------------------------------------------------------------------------------- /sec/csfadjust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/csfadjust.sh -------------------------------------------------------------------------------- /sec/exim-blackhole.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/exim-blackhole.sh -------------------------------------------------------------------------------- /sec/facebook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/facebook.sh -------------------------------------------------------------------------------- /sec/facebook_ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/facebook_ips -------------------------------------------------------------------------------- /sec/feb2025botnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/feb2025botnet.sh -------------------------------------------------------------------------------- /sec/polkit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/polkit.sh -------------------------------------------------------------------------------- /sec/quickgmailhit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/quickgmailhit.sh -------------------------------------------------------------------------------- /sec/ransom.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/ransom.list -------------------------------------------------------------------------------- /sec/ransom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/ransom.sh -------------------------------------------------------------------------------- /sec/redoblackholes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/redoblackholes.sh -------------------------------------------------------------------------------- /sec/senderverifyfailed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/senderverifyfailed.sh -------------------------------------------------------------------------------- /sec/suswlunblock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/suswlunblock.sh -------------------------------------------------------------------------------- /sec/unfuckthesenetworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/unfuckthesenetworks.sh -------------------------------------------------------------------------------- /sec/worst.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/sec/worst.sh -------------------------------------------------------------------------------- /services/bye_afterlogic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/services/bye_afterlogic.sh -------------------------------------------------------------------------------- /services/installcloudsend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/services/installcloudsend.sh -------------------------------------------------------------------------------- /services/update_php73.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/services/update_php73.sh -------------------------------------------------------------------------------- /services/update_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/services/update_services.sh -------------------------------------------------------------------------------- /snappy/fix_ssl_redirect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/snappy/fix_ssl_redirect.sh -------------------------------------------------------------------------------- /snappy/remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/snappy/remove.sh -------------------------------------------------------------------------------- /snappy/snappy_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/snappy/snappy_install.sh -------------------------------------------------------------------------------- /snappy/update_snappy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/snappy/update_snappy.sh -------------------------------------------------------------------------------- /spamassassin/deploy_sa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/spamassassin/deploy_sa.sh -------------------------------------------------------------------------------- /spamassassin/deploykam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/spamassassin/deploykam.sh -------------------------------------------------------------------------------- /spamassassin/enable_spamd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/spamassassin/enable_spamd.sh -------------------------------------------------------------------------------- /spamassassin/failuremitigation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/spamassassin/failuremitigation.sh -------------------------------------------------------------------------------- /spamassassin/fixchildren.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/spamassassin/fixchildren.sh -------------------------------------------------------------------------------- /spamassassin/local.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/spamassassin/local.cf -------------------------------------------------------------------------------- /spamassassin/migrate_to_sa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/spamassassin/migrate_to_sa.sh -------------------------------------------------------------------------------- /spamassassin/update_rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/spamassassin/update_rules.sh -------------------------------------------------------------------------------- /syslog-ng.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/syslog-ng.sh -------------------------------------------------------------------------------- /update_limits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxroute/da_server_updates/HEAD/update_limits.sh --------------------------------------------------------------------------------