Skip to content

Commit f7cfc24

Browse files
committed
Bump version
1 parent ebbec27 commit f7cfc24

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ You can read the package documentation at http://django-yubin.readthedocs.org/en
8181

8282
Changelog
8383
---------
84+
* 1.2.0 Fix is_base64 detection. Add a «send_test_email» command to check connection parameters. New health check view. Don't open a connection if there are no messages in queue to send. Add a "date_sent" field to detect when the mail was sent.
8485
* 1.1.0 Fix attachment headers in TemplateAttachmentEmailMessagView making both "attachment" and "filename" args mandatory.
8586
* 1.0.5 Add missing paths in MANIFEST.in.
8687
* 1.0.4 Fix attachment visualization in the admin. Attach pdf in create_mail command. Solved Content-Transfer-Encoding issue.

docs/queue.rst

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,21 @@ you can run:
5353
(defaults to 90).
5454

5555
- ``status_mail`` the intent of this commant is to allow systems as nagios to
56-
be able to ask the queue about its status. It returns as string with than
57-
can be parses as ``(?P<queued>\d+)/(?P<deferred>\d+)/(?P<seconds>\d+)``
56+
be able to ask the queue about its status. It returns as string with than
57+
can be parses as ``(?P<queued>\d+)/(?P<deferred>\d+)/(?P<seconds>\d+)``
58+
59+
- ``send_test_mail`` send a simple email in order to check connection
60+
parameters.
61+
62+
- ``create_email`` create fake mails for testing.
5863

5964
You may want to set these up via cron to run regularly::
6065

6166
* * * * * (cd $PROJECT; python manage.py send_mail >> $PROJECT/cron_mail.log 2>&1)
6267
0,20,40 * * * * (cd $PROJECT; python manage.py retry_deferred >> $PROJECT/cron_mail_deferred.log 2>&1)
6368
0 1 * * * (cd $PROJECT; python manage.py cleanup_mail --days=30 >> $PROJECT/cron_mail_cleanup.log 2>&1)
6469

65-
This attempts to send mail every minute with a retry on failure every 20 minutes
70+
This attempts to send mail every minute with a retry on failure every 20 minutes
6671
and will run a cleanup task every day cleaning all the messaged created before
6772
30 days.
6873

humans.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ Juan Moreno (@morenosan)
1010
Dave Peake (@davepeake)
1111
Grzegorz Bialy (@grzegorzbialy)
1212
Carlos Salom (@csalom)
13+
Juan Luis Garcia (@JuanLuisGarcia)
1314

1415
https://github.com/APSL/django-yubin/graphs/contributors

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
setup(
2525
name='django-yubin',
26-
version='1.1.0',
26+
version='1.2.0',
2727
description=("A reusable Django app for composing and queueing emails "
2828
"Adds django-mailer2 + django-mailviews + others"),
2929
long_description=long_description,

0 commit comments

Comments
 (0)