extrapole
clone your own copy | download snapshot

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

urls.py
text/x-python

Download raw (225 bytes)

from django.conf.urls import patterns, include, url

urlpatterns = patterns('django_maildir.views',
    url(r'^$', 'index', name='maildir_index'),
    url(r'^file/(?P<mailbox>.+)/(?P<key>.+)/(?P<filename>.+)', 'get_file'),
)