Posts

Showing posts with the label notification

Disabling spam email notification of AntispamBee plugin in WordPress multisite

Antispam Bee is a great spam filtering plugin for WordPress. It's free of charge and ad-free. But the thing is when you apply it for your network, a WordPress multisite with hundred or thousand of blogs, you have to set it up one-by-one. Luckily, I found an easy way to apply the default settings of Antispam Bee for all the blogs, such as disable the spam email notifications or even delete the spam without sending it to the spam folder. It's quite easy, you just need to open the  antispam_bee.php  (/path/to/your/wordpress/wp-content/plugins/antispam-bee/) file and modify these lines as following (around line #370, #371):                                 'flag_spam'             => 0,                                 'email_notify'          => 0,

edx-platform - How to enable BULK EMAIL in the instructor dashboard

Image
Course staffs of a certain course can send notification emails (bulk emails) to students in the instructor dashboard of Open edX's LMS. But, to enable that functionality, the only way I know right now is: 1. Go to the django's admin interface > Bulk_Email > Course authorizations 2. Add a new course authorization and check the " Email enabled " checkbox with: Course id : Org/Course/CourseRun E.g: UNS/Py_001/201405 3. Go back to the instructor dashboard, instructor tab, the Email section will show up: Cool! \m/\m/\m/

Redmine - Email notifications are not sent when comment issues via email

In Redmine, user create and comment issues via email like a ticket system using ruby script (rdm-mailhandler) or redmine task ( redmine:email:receive_imap ) following this article: http://www.redmine.org/projects/redmine/wiki/RedmineReceivingEmails Example: getting emails from IMAP server and create or update an issue: create a cronjob to run the following command: */30 * * * * rake -f /path/to/redmine/appdir/Rakefile --silent redmine:email:receive_imap RAILS_ENV=production host=imap.foo.bar username=redmine@somenet.foo password=xx project=myproject unknown_user=create no_permission_check=1 no_account_notice=1 The above command will fetch emails from IMAP server when a user sent email to the server account (username=redmine@somenet.foo). Read the body, if there is issue id, create a new issue. If the email has id of an existing issue, add the message as an update. In addition, If the sender is not an existing use , it will create a new account without notify the sender. If ...