forked from cs2ag/powermail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_typoscript_setup.txt
74 lines (68 loc) · 1.77 KB
/
ext_typoscript_setup.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
config.tx_extbase {
persistence {
classes {
In2code\Powermail\Domain\Model\User {
mapping {
tableName = fe_users
}
}
In2code\Powermail\Domain\Model\UserGroup {
mapping {
tableName = fe_groups
}
}
In2code\Powermail\Domain\Model\Form {
mapping {
tableName = tx_powermail_domain_model_forms
}
}
In2code\Powermail\Domain\Model\Page {
mapping {
tableName = tx_powermail_domain_model_pages
}
}
In2code\Powermail\Domain\Model\Field {
mapping {
tableName = tx_powermail_domain_model_fields
}
}
In2code\Powermail\Domain\Model\Mail {
mapping {
tableName = tx_powermail_domain_model_mails
}
}
In2code\Powermail\Domain\Model\Answer {
mapping {
tableName = tx_powermail_domain_model_answers
}
}
}
}
}
# ParseFunc Configuration for using FAL links in receiver and sender mail
lib.parseFunc_powermail < lib.parseFunc_RTE
lib.parseFunc_powermail.tags.link.typolink.forceAbsoluteUrl = 1
#################
# Backend Module
#################
module.tx_powermail {
view {
templateRootPath = EXT:powermail/Resources/Private/Templates/
partialRootPath = EXT:powermail/Resources/Private/Partials/
layoutRootPath = EXT:powermail/Resources/Private/Layouts/
widget.TYPO3\CMS\Fluid\ViewHelpers\Widget\PaginateViewHelper.templateRootPath = EXT:powermail/Resources/Private/Templates/
}
settings {
# crdate, sender_name, sender_email, subject, receiver_mail, feuser, time
sortby = crdate
order = desc
perPage = 25
export {
filenameXls = powermail.xls
filenameCsv = powermail.csv
}
uploadPath = {$plugin.tx_powermail.settings.misc.uploadFolder}
# Don't touch this (this is just to let the extension know, that there is TypoScript included)
staticTemplate = 1
}
}