source: extensions/webmail/urls.py @ 115:8b695065126c

Revision 115:8b695065126c, 816 bytes checked in by tonio, 6 months ago (diff)

Ticket #33

Line 
1from django.conf.urls.defaults import *
2
3urlpatterns = patterns('mailng.extensions.webmail.main',
4                       (r'^$', "index"),
5                       (r'^compose/$', "compose"),
6                       (r'^move/$', "move"),
7                       (r'^empty/(?P<name>.+)/', "empty"),
8                       (r'^(?P<folder>.+)/(?P<mail_id>[\w\-\+]+)/part/$', 'getattachment'),
9                       (r'^(?P<fdname>.+)/(?P<mail_id>[\w\-\+]+)/delete/$', 'delete'),
10                       (r'^(?P<folder>.+)/(?P<mail_id>[\w\-\+]+)/content/$', 'getmailcontent'),
11                       (r'^(?P<folder>.+)/(?P<mail_id>[\w\-\+]+)/reply/$', 'reply'),
12                       (r'^(?P<folder>.+)/(?P<mail_id>[\w\-\+]+)/$', 'viewmail'),
13                       (r'^(?P<name>.+)/$', "folder"),
14                       )
Note: See TracBrowser for help on using the repository browser.