Friday, February 26, 2010

Hylafax 6.0 Debian Lenny T38modem 1.2.0 Asterisk 1.6

After fighting with t38modem for a week I finally found versions of opal and ptlib that work with t38modem 1.2 for sending faxes (have not tested receiving yet). ptlib-2.6.6 opal-3.6.7 t38modem-1.2.0 I am using most of the other instructions from this how to below. Hylafax 6.0 Debian (or Ubuntu) T38modem 1.0 Asterisk 1.6

Thursday, February 25, 2010

Debian Backports copy paste

echo 'deb http://www.backports.org/debian lenny-backports main contrib non-free' >> /etc/apt/sources.list
apt-get update && apt-get install debian-backports-keyring --force-yes && apt-get update
instructions [Debian Backports]: "deb http://www.backports.org/debian lenny-backports main contrib non-free"

Monday, February 15, 2010

Django | User authentication in Django | Django documentation

Django auth doesn't have all the urls listed anywhere so here they are:
    (r'^accounts/login/$', 'django.contrib.auth.views.login'),
    (r'^accounts/logout/$', 'django.contrib.auth.views.logout'),
    (r'^accounts/password_change/$', 'django.contrib.auth.views.password_change'),
    (r'^accounts/password_change_done/$', 'django.contrib.auth.views.password_change_done'),
    (r'^accounts/password_reset/$', 'django.contrib.auth.views.password_reset'),
    (r'^accounts/accounts/password_reset/done/$', 'django.contrib.auth.views.password_reset_done'),
    (r'^accounts/reset/(?P[0-9A-Za-z]+)-(?P.+)/$', 'django.contrib.auth.views.password_reset_confirm'),
    (r'^accounts/reset/done/$', 'django.contrib.auth.views.password_reset_complete'),  
Django | User authentication in Django | Django documentation