This repository has been archived on 2024-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
termintool/config.js

29 lines
522 B
JavaScript
Raw Normal View History

2013-01-15 22:32:31 +01:00
exports.url = {
hostname: 'www.krautspace.de',
port: 443,
2013-01-16 13:57:33 +01:00
path: '/user:0xaffe?do=edit',
2013-01-15 22:32:31 +01:00
method: 'GET'
2013-01-16 13:57:33 +01:00
};
exports.publishers = ['latex'];
exports.mail = {
mda: 'sendmail' // smtp is also possible, but not implemented yet, so are the settings bellow a bit useless
,host: ''
,port: ''
,secureConnection: true
,auth: {
user: ''
,pass: ''
}
,composing: {
from: ''
,to: ''
}
}
exports.latex = {
output: 'output'
,tempDir: '/tmp/termintool'
,templates: ['kulturprogramm-ks']
}