Merge pull request 'disabled forms, added line on contact page about chat bridge' (#171) from muppdev into master
Reviewed-on: #171
This commit is contained in:
commit
24b8026382
29 changed files with 551 additions and 506 deletions
|
@ -27,3 +27,7 @@ twig_first: false
|
|||
|
||||
[](https://cloud.disroot.org/call/di5y9zno
|
||||
) NextCloud: https://cloud.disroot.org/call/di5y9zno
|
||||
|
||||
|
||||
All listed chatrooms are bridged together. This means that no matter which chatroom from this list you choose, you will be able to communicate with all the comunity via a chat relay bot.
|
||||
|
||||
|
|
|
@ -27,3 +27,5 @@ twig_first: false
|
|||
|
||||
[](https://cloud.disroot.org/call/di5y9zno
|
||||
) NextCloud: https://cloud.disroot.org/call/di5y9zno
|
||||
|
||||
All listed chatrooms are bridged together. This means that no matter which chatroom from this list you choose, you will be able to communicate with all the comunity via a chat relay bot.
|
||||
|
|
|
@ -26,3 +26,7 @@ twig_first: false
|
|||
|
||||
[](https://cloud.disroot.org/call/di5y9zno
|
||||
) NextCloud: https://cloud.disroot.org/call/di5y9zno
|
||||
|
||||
|
||||
All listed chatrooms are bridged together. This means that no matter which chatroom from this list you choose, you will be able to communicate with all the comunity via a chat relay bot.
|
||||
|
||||
|
|
|
@ -26,3 +26,6 @@ twig_first: false
|
|||
|
||||
[](https://cloud.disroot.org/call/di5y9zno
|
||||
) NextCloud: https://cloud.disroot.org/call/di5y9zno
|
||||
|
||||
All listed chatrooms are bridged together. This means that no matter which chatroom from this list you choose, you will be able to communicate with all the comunity via a chat relay bot.
|
||||
|
||||
|
|
|
@ -26,3 +26,7 @@ twig_first: false
|
|||
|
||||
[](https://cloud.disroot.org/call/di5y9zno
|
||||
) NextCloud: https://cloud.disroot.org/call/di5y9zno
|
||||
|
||||
|
||||
All listed chatrooms are bridged together. This means that no matter which chatroom from this list you choose, you will be able to communicate with all the comunity via a chat relay bot.
|
||||
|
||||
|
|
|
@ -1,140 +1,7 @@
|
|||
---
|
||||
title: 'Alias Request Form'
|
||||
title: 'Temporary disabled'
|
||||
header_image: introverts.jpg
|
||||
form:
|
||||
name: Alias-request-form
|
||||
fields:
|
||||
-
|
||||
name: username
|
||||
label: 'User Name'
|
||||
placeholder: 'Enter your Disroot user name'
|
||||
autofocus: 'on'
|
||||
autocomplete: 'on'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.]*'
|
||||
required: true
|
||||
-
|
||||
name: 'Alias 1'
|
||||
label: Alias
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.]*'
|
||||
required: true
|
||||
-
|
||||
name: 'Alias 2'
|
||||
label: 'Second Alias (optional)'
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.]*'
|
||||
required: false
|
||||
-
|
||||
name: 'Alias 3'
|
||||
label: 'Third Alias (optional)'
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.]*'
|
||||
required: false
|
||||
-
|
||||
name: 'Alias 4'
|
||||
label: 'Forth Alias (optional)'
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.]*'
|
||||
required: false
|
||||
-
|
||||
name: 'Alias 5'
|
||||
label: 'Fifth Alias (optional)'
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.]*'
|
||||
required: false
|
||||
-
|
||||
name: contribution
|
||||
label: 'Contributing via'
|
||||
placeholder: select
|
||||
type: select
|
||||
options:
|
||||
patreon: Patreon
|
||||
paypal: Paypal
|
||||
bank: 'Bank transfer'
|
||||
faircoin: Faircoin
|
||||
bitcoin: Bitcoin
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: amount
|
||||
label: Amount
|
||||
placeholder: 'EUR/USD/BTC/etc.'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9., ]*'
|
||||
required: true
|
||||
-
|
||||
name: frequency
|
||||
label: Repeated
|
||||
type: radio
|
||||
default: monthly
|
||||
options:
|
||||
monthly: Monthly
|
||||
yearly: Yearly
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: reference
|
||||
label: Reference
|
||||
type: text
|
||||
placeholder: 'Name of payment holder or other transfer reference'
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: comments
|
||||
type: textarea
|
||||
-
|
||||
name: honeypot
|
||||
type: honeypot
|
||||
buttons:
|
||||
-
|
||||
type: submit
|
||||
value: Submit
|
||||
-
|
||||
type: reset
|
||||
value: Reset
|
||||
process:
|
||||
-
|
||||
email:
|
||||
from: alias-request@disroot.org
|
||||
to: '{{ form.value.username }}@disroot.org'
|
||||
subject: '[Disroot] Your alias request'
|
||||
body: '<br><br>Hi {{ form.value.username|e }}, <br><br><strong>Thank you for your contribution to Disroot.org!</strong><br>We truly appreciate your generosity.<br><br>We will review your alias request and get back to you as soon as we can.</strong><br><br><hr><br><strong>Here is a summary of the received request:</strong><br><br>{% include ''forms/data.html.twig'' %}'
|
||||
-
|
||||
email:
|
||||
from: alias-request@disroot.org
|
||||
to: '{{ config.plugins.email.to }}'
|
||||
reply_to: '{{ form.value.username }}@disroot.org'
|
||||
subject: '[Alias request] - {{ form.value.username|e }}'
|
||||
body: '{% include ''forms/data.html.twig'' %}'
|
||||
-
|
||||
save:
|
||||
fileprefix: feedback-
|
||||
dateformat: Ymd-His-u
|
||||
extension: txt
|
||||
body: '{% include ''forms/data.txt.twig'' %}'
|
||||
-
|
||||
message: 'Your alias request has been sent!'
|
||||
-
|
||||
display: thankyou
|
||||
---
|
||||
|
||||
<h1 class="form-title"> Email Alias Request </h1>
|
||||
<p class="form-text"><strong>The email aliases feature is offered as a "reward" for regular supporters.</strong> By regular supporters we think of those who contribute with, at least, the equivalent of one cup of coffee a month. In order for the 'reward' not becoming the only incentive to donate, we expect to see the donation made before we can enable this feature.
|
||||
<br><br>
|
||||
It is not that we are promoting coffee, on the contrary - coffee is a symbol for <a href="http://thesourcefilm.com/">exploitation</a> and <a href="http://www.foodispower.org/coffee/">inequality</a> so we thought that it is a good way to let people measure themselves how much they can give.
|
||||
We found this <a href="https://www.caffesociety.co.uk/blog/the-cheapest-cities-in-the-world-for-a-cup-of-coffee">list</a> of coffee cup prices around the world, it might not be very accurate, but it gives a good indication of the different fares.
|
||||
<br><br>
|
||||
<strong>Please take time to consider your contribution.</strong> If you can 'buy' us one cup of Rio De Janeiro coffee a month that's OK, but If you can afford a Double Decaf Soy Frappuccino With An Extra Shot And Cream a month, then you can really help us keep the Disroot platform running and make sure it is available for free for other people with less means.</p>
|
||||
<h1 class="form-title"> Temorary disabled </h1>
|
||||
<p class="form-text"> Due to huge backlog in incoming custom requests and work being done to improve our response time, we have decided to temporarily disable this feature.<br>Sorry for the inconvenience and hope to have it up and running again as soon as possible.</p>
|
||||
|
|
140
pages/forms/alias-request-form/form.en.md.bak
Normal file
140
pages/forms/alias-request-form/form.en.md.bak
Normal file
|
@ -0,0 +1,140 @@
|
|||
---
|
||||
title: 'Alias Request Form'
|
||||
header_image: introverts.jpg
|
||||
form:
|
||||
name: Alias-request-form
|
||||
fields:
|
||||
-
|
||||
name: username
|
||||
label: 'User Name'
|
||||
placeholder: 'Enter your Disroot user name'
|
||||
autofocus: 'on'
|
||||
autocomplete: 'on'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.]*'
|
||||
required: true
|
||||
-
|
||||
name: 'Alias 1'
|
||||
label: Alias
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.]*'
|
||||
required: true
|
||||
-
|
||||
name: 'Alias 2'
|
||||
label: 'Second Alias (optional)'
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.]*'
|
||||
required: false
|
||||
-
|
||||
name: 'Alias 3'
|
||||
label: 'Third Alias (optional)'
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.]*'
|
||||
required: false
|
||||
-
|
||||
name: 'Alias 4'
|
||||
label: 'Forth Alias (optional)'
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.]*'
|
||||
required: false
|
||||
-
|
||||
name: 'Alias 5'
|
||||
label: 'Fifth Alias (optional)'
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.]*'
|
||||
required: false
|
||||
-
|
||||
name: contribution
|
||||
label: 'Contributing via'
|
||||
placeholder: select
|
||||
type: select
|
||||
options:
|
||||
patreon: Patreon
|
||||
paypal: Paypal
|
||||
bank: 'Bank transfer'
|
||||
faircoin: Faircoin
|
||||
bitcoin: Bitcoin
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: amount
|
||||
label: Amount
|
||||
placeholder: 'EUR/USD/BTC/etc.'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9., ]*'
|
||||
required: true
|
||||
-
|
||||
name: frequency
|
||||
label: Repeated
|
||||
type: radio
|
||||
default: monthly
|
||||
options:
|
||||
monthly: Monthly
|
||||
yearly: Yearly
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: reference
|
||||
label: Reference
|
||||
type: text
|
||||
placeholder: 'Name of payment holder or other transfer reference'
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: comments
|
||||
type: textarea
|
||||
-
|
||||
name: honeypot
|
||||
type: honeypot
|
||||
buttons:
|
||||
-
|
||||
type: submit
|
||||
value: Submit
|
||||
-
|
||||
type: reset
|
||||
value: Reset
|
||||
process:
|
||||
-
|
||||
email:
|
||||
from: alias-request@disroot.org
|
||||
to: '{{ form.value.username }}@disroot.org'
|
||||
subject: '[Disroot] Your alias request'
|
||||
body: '<br><br>Hi {{ form.value.username|e }}, <br><br><strong>Thank you for your contribution to Disroot.org!</strong><br>We truly appreciate your generosity.<br><br>We will review your alias request and get back to you as soon as we can.</strong><br><br><hr><br><strong>Here is a summary of the received request:</strong><br><br>{% include ''forms/data.html.twig'' %}'
|
||||
-
|
||||
email:
|
||||
from: alias-request@disroot.org
|
||||
to: '{{ config.plugins.email.to }}'
|
||||
reply_to: '{{ form.value.username }}@disroot.org'
|
||||
subject: '[Alias request] - {{ form.value.username|e }}'
|
||||
body: '{% include ''forms/data.html.twig'' %}'
|
||||
-
|
||||
save:
|
||||
fileprefix: feedback-
|
||||
dateformat: Ymd-His-u
|
||||
extension: txt
|
||||
body: '{% include ''forms/data.txt.twig'' %}'
|
||||
-
|
||||
message: 'Your alias request has been sent!'
|
||||
-
|
||||
display: thankyou
|
||||
---
|
||||
|
||||
<h1 class="form-title"> Email Alias Request </h1>
|
||||
<p class="form-text"><strong>The email aliases feature is offered as a "reward" for regular supporters.</strong> By regular supporters we think of those who contribute with, at least, the equivalent of one cup of coffee a month. In order for the 'reward' not becoming the only incentive to donate, we expect to see the donation made before we can enable this feature.
|
||||
<br><br>
|
||||
It is not that we are promoting coffee, on the contrary - coffee is a symbol for <a href="http://thesourcefilm.com/">exploitation</a> and <a href="http://www.foodispower.org/coffee/">inequality</a> so we thought that it is a good way to let people measure themselves how much they can give.
|
||||
We found this <a href="https://www.caffesociety.co.uk/blog/the-cheapest-cities-in-the-world-for-a-cup-of-coffee">list</a> of coffee cup prices around the world, it might not be very accurate, but it gives a good indication of the different fares.
|
||||
<br><br>
|
||||
<strong>Please take time to consider your contribution.</strong> If you can 'buy' us one cup of Rio De Janeiro coffee a month that's OK, but If you can afford a Double Decaf Soy Frappuccino With An Extra Shot And Cream a month, then you can really help us keep the Disroot platform running and make sure it is available for free for other people with less means.</p>
|
|
@ -1,157 +1,7 @@
|
|||
---
|
||||
title: 'Domain Linking Form'
|
||||
header_image: netneutrality.jpg
|
||||
form:
|
||||
name: Domain-linking-form
|
||||
fields:
|
||||
-
|
||||
name: username
|
||||
label: 'User Name'
|
||||
placeholder: 'Enter your Disroot user name'
|
||||
autofocus: 'on'
|
||||
autocomplete: 'on'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.-]*'
|
||||
required: true
|
||||
-
|
||||
name: Domain
|
||||
label: 'Your domain'
|
||||
placeholder: your-domain
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.-]*'
|
||||
required: true
|
||||
-
|
||||
name: 'Alias 1'
|
||||
label: Alias
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.-]*'
|
||||
required: true
|
||||
-
|
||||
name: 'Alias 2'
|
||||
label: 'Second Alias (optional)'
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.-]*'
|
||||
required: false
|
||||
-
|
||||
name: 'Alias 3'
|
||||
label: 'Third Alias (optional)'
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.-]*'
|
||||
required: false
|
||||
-
|
||||
name: 'Alias 4'
|
||||
label: 'Forth Alias (optional)'
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.-]*'
|
||||
required: false
|
||||
-
|
||||
name: 'Alias 5'
|
||||
label: 'Fifth Alias (optional)'
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.-]*'
|
||||
required: false
|
||||
-
|
||||
name: contribution
|
||||
label: 'Contributing via'
|
||||
placeholder: select
|
||||
type: select
|
||||
options:
|
||||
patreon: Patreon
|
||||
paypal: Paypal
|
||||
bank: 'Bank transfer'
|
||||
faircoin: Faircoin
|
||||
bitcoin: Bitcoin
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: amount
|
||||
label: Amount
|
||||
placeholder: 'EUR/USD/BTC/etc.'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9., ]*'
|
||||
required: true
|
||||
-
|
||||
name: frequency
|
||||
label: Repeated
|
||||
type: radio
|
||||
default: monthly
|
||||
options:
|
||||
monthly: Monthly
|
||||
yearly: Yearly
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: reference
|
||||
label: Reference
|
||||
type: text
|
||||
placeholder: 'Name of payment holder or other transfer reference'
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: comments
|
||||
type: textarea
|
||||
-
|
||||
name: honeypot
|
||||
type: honeypot
|
||||
buttons:
|
||||
-
|
||||
type: submit
|
||||
value: Submit
|
||||
-
|
||||
type: reset
|
||||
value: Reset
|
||||
process:
|
||||
-
|
||||
email:
|
||||
from: domain-request@disroot.org
|
||||
to: '{{ form.value.username }}@disroot.org'
|
||||
subject: '[Disroot] Your domain linking request'
|
||||
body: '<br><br>Hi {{ form.value.username|e }}, <br><br><strong>Thank you for your contribution to Disroot.org!</strong><br>We truly appreciate your generosity.<br><br>We will review your request and get back to you as soon as we can.</strong><br><br><hr><br><strong>Here is a summary of the received request:</strong><br><br>{% include ''forms/data.html.twig'' %}'
|
||||
-
|
||||
email:
|
||||
from: alias-request@disroot.org
|
||||
to: '{{ config.plugins.email.to }}'
|
||||
reply_to: '{{ form.value.username }}@disroot.org'
|
||||
subject: '[Domain linking request] - {{ form.value.username|e }}'
|
||||
body: '{% include ''forms/data.html.twig'' %}'
|
||||
-
|
||||
save:
|
||||
fileprefix: feedback-
|
||||
dateformat: Ymd-His-u
|
||||
extension: txt
|
||||
body: '{% include ''forms/data.txt.twig'' %}'
|
||||
-
|
||||
message: 'Your domain linking request has been sent!'
|
||||
-
|
||||
display: thankyou
|
||||
title: 'Temporary disabled'
|
||||
header_image: introverts.jpg
|
||||
---
|
||||
|
||||
<h1 class="form-title"> Domain Linking Request </h1>
|
||||
<p class="form-text"><strong> Fill in this form if you would like to use your own domain for Email aliases.</strong>
|
||||
<br><br>
|
||||
Please follow these steps to point your domain to our server before you submit the request: <br><strong> (this will also serve to verify the domain is really owned by you and without that we will not proceed to process your request) </strong><br></p>
|
||||
<h4 class="form-text"> 1. Go to the DNS records settings for your domain</h4>
|
||||
<p class="form-text"><b>-</b> <i>Point <b>MX record</b> to disroot.org (if you are using your domain currently with other provider, set <b>MX20</b> or higher)</i><br>
|
||||
<b>-</b> <i>Set TXT record to </i><b>"v=spf1 mx a ptr include:disroot.org -all"</b><br>
|
||||
</p>
|
||||
<h4 class="form-text">2. Start donating</h4>
|
||||
<p class="form-text">The email aliases feature is offered as a <b>"reward"</b> for regular supporters. By regular supporters we think of those who contribute with, at least, the equivalent of one cup of coffee a month. In order for the 'reward' not becoming the only incentive to donate, we expect to see the donation made before we can enable this feature.<br><br>
|
||||
Check <a href="https://disroot.org/donate">donate page</a> to learn more
|
||||
</p>
|
||||
<h4 class="form-text">3. Once we review your request we will contact you to finalize the procedure</h4>
|
||||
<p class="form-text">
|
||||
Please take time to consider your contribution. If you can 'buy' us one cup of Rio De Janeiro coffee a month that's OK, but If you can afford a Double Decaf Soy Frappuccino With An Extra Shot And Cream a month, then you can really help us keep the Disroot platform running and make sure it is available for free for other people with less means.
|
||||
</p>
|
||||
<h1 class="form-title"> Temorary disabled </h1>
|
||||
<p class="form-text"> Due to huge backlog in incoming custom requests and work being done to improve our response time, we have decided to temporarily disable this feature.<br>Sorry for the inconvenience and hope to have it up and running again as soon as possible.</p>
|
||||
|
|
157
pages/forms/domain-linking-form/form.en.md.bak
Normal file
157
pages/forms/domain-linking-form/form.en.md.bak
Normal file
|
@ -0,0 +1,157 @@
|
|||
---
|
||||
title: 'Domain Linking Form'
|
||||
header_image: netneutrality.jpg
|
||||
form:
|
||||
name: Domain-linking-form
|
||||
fields:
|
||||
-
|
||||
name: username
|
||||
label: 'User Name'
|
||||
placeholder: 'Enter your Disroot user name'
|
||||
autofocus: 'on'
|
||||
autocomplete: 'on'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.-]*'
|
||||
required: true
|
||||
-
|
||||
name: Domain
|
||||
label: 'Your domain'
|
||||
placeholder: your-domain
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.-]*'
|
||||
required: true
|
||||
-
|
||||
name: 'Alias 1'
|
||||
label: Alias
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.-]*'
|
||||
required: true
|
||||
-
|
||||
name: 'Alias 2'
|
||||
label: 'Second Alias (optional)'
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.-]*'
|
||||
required: false
|
||||
-
|
||||
name: 'Alias 3'
|
||||
label: 'Third Alias (optional)'
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.-]*'
|
||||
required: false
|
||||
-
|
||||
name: 'Alias 4'
|
||||
label: 'Forth Alias (optional)'
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.-]*'
|
||||
required: false
|
||||
-
|
||||
name: 'Alias 5'
|
||||
label: 'Fifth Alias (optional)'
|
||||
placeholder: your-alias
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.-]*'
|
||||
required: false
|
||||
-
|
||||
name: contribution
|
||||
label: 'Contributing via'
|
||||
placeholder: select
|
||||
type: select
|
||||
options:
|
||||
patreon: Patreon
|
||||
paypal: Paypal
|
||||
bank: 'Bank transfer'
|
||||
faircoin: Faircoin
|
||||
bitcoin: Bitcoin
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: amount
|
||||
label: Amount
|
||||
placeholder: 'EUR/USD/BTC/etc.'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9., ]*'
|
||||
required: true
|
||||
-
|
||||
name: frequency
|
||||
label: Repeated
|
||||
type: radio
|
||||
default: monthly
|
||||
options:
|
||||
monthly: Monthly
|
||||
yearly: Yearly
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: reference
|
||||
label: Reference
|
||||
type: text
|
||||
placeholder: 'Name of payment holder or other transfer reference'
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: comments
|
||||
type: textarea
|
||||
-
|
||||
name: honeypot
|
||||
type: honeypot
|
||||
buttons:
|
||||
-
|
||||
type: submit
|
||||
value: Submit
|
||||
-
|
||||
type: reset
|
||||
value: Reset
|
||||
process:
|
||||
-
|
||||
email:
|
||||
from: domain-request@disroot.org
|
||||
to: '{{ form.value.username }}@disroot.org'
|
||||
subject: '[Disroot] Your domain linking request'
|
||||
body: '<br><br>Hi {{ form.value.username|e }}, <br><br><strong>Thank you for your contribution to Disroot.org!</strong><br>We truly appreciate your generosity.<br><br>We will review your request and get back to you as soon as we can.</strong><br><br><hr><br><strong>Here is a summary of the received request:</strong><br><br>{% include ''forms/data.html.twig'' %}'
|
||||
-
|
||||
email:
|
||||
from: alias-request@disroot.org
|
||||
to: '{{ config.plugins.email.to }}'
|
||||
reply_to: '{{ form.value.username }}@disroot.org'
|
||||
subject: '[Domain linking request] - {{ form.value.username|e }}'
|
||||
body: '{% include ''forms/data.html.twig'' %}'
|
||||
-
|
||||
save:
|
||||
fileprefix: feedback-
|
||||
dateformat: Ymd-His-u
|
||||
extension: txt
|
||||
body: '{% include ''forms/data.txt.twig'' %}'
|
||||
-
|
||||
message: 'Your domain linking request has been sent!'
|
||||
-
|
||||
display: thankyou
|
||||
---
|
||||
|
||||
<h1 class="form-title"> Domain Linking Request </h1>
|
||||
<p class="form-text"><strong> Fill in this form if you would like to use your own domain for Email aliases.</strong>
|
||||
<br><br>
|
||||
Please follow these steps to point your domain to our server before you submit the request: <br><strong> (this will also serve to verify the domain is really owned by you and without that we will not proceed to process your request) </strong><br></p>
|
||||
<h4 class="form-text"> 1. Go to the DNS records settings for your domain</h4>
|
||||
<p class="form-text"><b>-</b> <i>Point <b>MX record</b> to disroot.org (if you are using your domain currently with other provider, set <b>MX20</b> or higher)</i><br>
|
||||
<b>-</b> <i>Set TXT record to </i><b>"v=spf1 mx a ptr include:disroot.org -all"</b><br>
|
||||
</p>
|
||||
<h4 class="form-text">2. Start donating</h4>
|
||||
<p class="form-text">The email aliases feature is offered as a <b>"reward"</b> for regular supporters. By regular supporters we think of those who contribute with, at least, the equivalent of one cup of coffee a month. In order for the 'reward' not becoming the only incentive to donate, we expect to see the donation made before we can enable this feature.<br><br>
|
||||
Check <a href="https://disroot.org/donate">donate page</a> to learn more
|
||||
</p>
|
||||
<h4 class="form-text">3. Once we review your request we will contact you to finalize the procedure</h4>
|
||||
<p class="form-text">
|
||||
Please take time to consider your contribution. If you can 'buy' us one cup of Rio De Janeiro coffee a month that's OK, but If you can afford a Double Decaf Soy Frappuccino With An Extra Shot And Cream a month, then you can really help us keep the Disroot platform running and make sure it is available for free for other people with less means.
|
||||
</p>
|
|
@ -1,109 +1,7 @@
|
|||
---
|
||||
title: 'Extra Mailbox Storage'
|
||||
form:
|
||||
name: 'Extra Mailbox Space'
|
||||
fields:
|
||||
-
|
||||
name: username
|
||||
label: 'User Name'
|
||||
placeholder: 'Enter the Disroot user name'
|
||||
autofocus: 'on'
|
||||
autocomplete: 'on'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.]*'
|
||||
required: true
|
||||
-
|
||||
name: email
|
||||
label: 'Contact Email Address'
|
||||
placeholder: 'Enter an email address to contact you'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.-_@]*'
|
||||
required: true
|
||||
-
|
||||
name: 'Additional Inbox Storage'
|
||||
label: 'Additional Storage in GB'
|
||||
type: number
|
||||
classes: form-number
|
||||
outerclasses: form-outer
|
||||
validate:
|
||||
min: 1
|
||||
max: 10
|
||||
steps: 1
|
||||
value: 1
|
||||
required: true
|
||||
-
|
||||
name: comments
|
||||
type: textarea
|
||||
-
|
||||
name: 'payment details'
|
||||
type: display
|
||||
size: large
|
||||
label: ' '
|
||||
markdown: true
|
||||
content: '**Payment details:**'
|
||||
-
|
||||
name: country
|
||||
label: 'Country (necessary for VAT purposes)'
|
||||
placeholder: 'Please specify the country your paying account is registered in'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z]*'
|
||||
required: true
|
||||
-
|
||||
name: payment
|
||||
label: 'Payment via (May be subjected to extra transaction fees)'
|
||||
placeholder: select
|
||||
type: select
|
||||
options:
|
||||
paypal: Paypal
|
||||
bank: 'Bank transfer'
|
||||
faircoin: Faircoin
|
||||
bitcoin: Bitcoin
|
||||
patreon: Patreon
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: honeypot
|
||||
type: honeypot
|
||||
buttons:
|
||||
-
|
||||
type: submit
|
||||
value: Submit
|
||||
-
|
||||
type: reset
|
||||
value: Reset
|
||||
process:
|
||||
-
|
||||
email:
|
||||
from: extra-storage@disroot.org
|
||||
to: '{{ form.value.email }}'
|
||||
subject: '[Disroot] Extra Storage Request'
|
||||
body: 'Dear {{ form.value.username }}, <br><br> We have received a request for extra storage space. <br><br>You should receive your confirmation per E-mail with your billing reference. <br> Once we receive your payment we will assign you the extra storage. <br><br> Thank you for supporting Disroot!'
|
||||
-
|
||||
email:
|
||||
from: extra-storage@disroot.org
|
||||
to: '{{ config.plugins.email.to }}'
|
||||
reply_to: '{{ form.value.email }}'
|
||||
subject: '[Extra storage request] - {{ form.value.username|e }}'
|
||||
body: '{% include ''forms/data.html.twig'' %}'
|
||||
-
|
||||
save:
|
||||
fileprefix: feedback-
|
||||
dateformat: Ymd-His-u
|
||||
extension: txt
|
||||
body: '{% include ''forms/data.html.twig'' %}'
|
||||
-
|
||||
message: 'Your request has been sent!'
|
||||
-
|
||||
display: thankyou
|
||||
title: 'Temporary disabled'
|
||||
header_image: introverts.jpg
|
||||
---
|
||||
|
||||
|
||||
<h1 class="form-title"> Extra Mailbox Storage </h1>
|
||||
|
||||
<div class="form-text">
|
||||
<p markdown="1">
|
||||
It is possible to extend your E-mail storage with up to 10 GB for the cost of 0.15 euro per GB per month, paid yearly. If you are adding storage both to your mailbox and cloud account - use [this form](https://disroot.org/en/forms/extra-storage-space)</p><br>
|
||||
</div>
|
||||
<h1 class="form-title"> Temorary disabled </h1>
|
||||
<p class="form-text"> Due to huge backlog in incoming custom requests and work being done to improve our response time, we have decided to temporarily disable this feature.<br>Sorry for the inconvenience and hope to have it up and running again as soon as possible.</p>
|
||||
|
|
109
pages/forms/extra-storage-mailbox/form.en.md.bak
Normal file
109
pages/forms/extra-storage-mailbox/form.en.md.bak
Normal file
|
@ -0,0 +1,109 @@
|
|||
---
|
||||
title: 'Extra Mailbox Storage'
|
||||
form:
|
||||
name: 'Extra Mailbox Space'
|
||||
fields:
|
||||
-
|
||||
name: username
|
||||
label: 'User Name'
|
||||
placeholder: 'Enter the Disroot user name'
|
||||
autofocus: 'on'
|
||||
autocomplete: 'on'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.]*'
|
||||
required: true
|
||||
-
|
||||
name: email
|
||||
label: 'Contact Email Address'
|
||||
placeholder: 'Enter an email address to contact you'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.-_@]*'
|
||||
required: true
|
||||
-
|
||||
name: 'Additional Inbox Storage'
|
||||
label: 'Additional Storage in GB'
|
||||
type: number
|
||||
classes: form-number
|
||||
outerclasses: form-outer
|
||||
validate:
|
||||
min: 1
|
||||
max: 10
|
||||
steps: 1
|
||||
value: 1
|
||||
required: true
|
||||
-
|
||||
name: comments
|
||||
type: textarea
|
||||
-
|
||||
name: 'payment details'
|
||||
type: display
|
||||
size: large
|
||||
label: ' '
|
||||
markdown: true
|
||||
content: '**Payment details:**'
|
||||
-
|
||||
name: country
|
||||
label: 'Country (necessary for VAT purposes)'
|
||||
placeholder: 'Please specify the country your paying account is registered in'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z]*'
|
||||
required: true
|
||||
-
|
||||
name: payment
|
||||
label: 'Payment via (May be subjected to extra transaction fees)'
|
||||
placeholder: select
|
||||
type: select
|
||||
options:
|
||||
paypal: Paypal
|
||||
bank: 'Bank transfer'
|
||||
faircoin: Faircoin
|
||||
bitcoin: Bitcoin
|
||||
patreon: Patreon
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: honeypot
|
||||
type: honeypot
|
||||
buttons:
|
||||
-
|
||||
type: submit
|
||||
value: Submit
|
||||
-
|
||||
type: reset
|
||||
value: Reset
|
||||
process:
|
||||
-
|
||||
email:
|
||||
from: extra-storage@disroot.org
|
||||
to: '{{ form.value.email }}'
|
||||
subject: '[Disroot] Extra Storage Request'
|
||||
body: 'Dear {{ form.value.username }}, <br><br> We have received a request for extra storage space. <br><br>You should receive your confirmation per E-mail with your billing reference. <br> Once we receive your payment we will assign you the extra storage. <br><br> Thank you for supporting Disroot!'
|
||||
-
|
||||
email:
|
||||
from: extra-storage@disroot.org
|
||||
to: '{{ config.plugins.email.to }}'
|
||||
reply_to: '{{ form.value.email }}'
|
||||
subject: '[Extra storage request] - {{ form.value.username|e }}'
|
||||
body: '{% include ''forms/data.html.twig'' %}'
|
||||
-
|
||||
save:
|
||||
fileprefix: feedback-
|
||||
dateformat: Ymd-His-u
|
||||
extension: txt
|
||||
body: '{% include ''forms/data.html.twig'' %}'
|
||||
-
|
||||
message: 'Your request has been sent!'
|
||||
-
|
||||
display: thankyou
|
||||
---
|
||||
|
||||
|
||||
<h1 class="form-title"> Extra Mailbox Storage </h1>
|
||||
|
||||
<div class="form-text">
|
||||
<p markdown="1">
|
||||
It is possible to extend your E-mail storage with up to 10 GB for the cost of 0.15 euro per GB per month, paid yearly. If you are adding storage both to your mailbox and cloud account - use [this form](https://disroot.org/en/forms/extra-storage-space)</p><br>
|
||||
</div>
|
|
@ -1,113 +1,7 @@
|
|||
---
|
||||
title: 'Extra Storage Space'
|
||||
form:
|
||||
name: 'Extra Storage Space'
|
||||
fields:
|
||||
-
|
||||
name: username
|
||||
label: 'User Name'
|
||||
placeholder: 'Enter the Disroot user name'
|
||||
autofocus: 'on'
|
||||
autocomplete: 'on'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.]*'
|
||||
required: true
|
||||
-
|
||||
name: email
|
||||
label: 'Contact Email Address'
|
||||
placeholder: 'Enter an email address to contact you'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.-_@]*'
|
||||
required: true
|
||||
-
|
||||
name: 'Amount of Space'
|
||||
label: 'Total Storage Space'
|
||||
type: select
|
||||
default: 14GB
|
||||
options:
|
||||
14GB: '14GB (2.10€ per month)'
|
||||
29GB: '29GB (4.35€ per month)'
|
||||
54GB: '54GB (8.10€ per month)'
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: comments
|
||||
type: textarea
|
||||
-
|
||||
name: 'payment details'
|
||||
type: display
|
||||
size: large
|
||||
label: ' '
|
||||
markdown: true
|
||||
content: '**Payment details:**'
|
||||
-
|
||||
name: country
|
||||
label: 'Country (necessary for VAT purposes)'
|
||||
placeholder: 'Please specify the country your paying account is registered in'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z]*'
|
||||
required: true
|
||||
-
|
||||
name: payment
|
||||
label: 'Payment via (May be subjected to extra transaction fees)'
|
||||
placeholder: select
|
||||
type: select
|
||||
options:
|
||||
paypal: Paypal
|
||||
bank: 'Bank transfer'
|
||||
faircoin: Faircoin
|
||||
bitcoin: Bitcoin
|
||||
patreon: Patreon
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: frequency
|
||||
label: Monthly/Yearly
|
||||
type: radio
|
||||
default: yearly
|
||||
options:
|
||||
monthly: Monthly
|
||||
yearly: Yearly
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: honeypot
|
||||
type: honeypot
|
||||
buttons:
|
||||
-
|
||||
type: submit
|
||||
value: Submit
|
||||
-
|
||||
type: reset
|
||||
value: Reset
|
||||
process:
|
||||
-
|
||||
email:
|
||||
from: extra-storage@disroot.org
|
||||
to: '{{ form.value.email }}'
|
||||
subject: '[Disroot] Extra Storage Request'
|
||||
body: 'Dear {{ form.value.username }}, <br><br> We have received a request for extra storage space. <br><br>You should receive your confirmation per E-mail with your billing reference. <br> Once we receive your payment we will assign you the extra storage. <br><br> Thank you for supporting Disroot!'
|
||||
-
|
||||
email:
|
||||
from: extra-storage@disroot.org
|
||||
to: '{{ config.plugins.email.to }}'
|
||||
reply_to: '{{ form.value.email }}'
|
||||
subject: '[Extra storage request] - {{ form.value.username|e }}'
|
||||
body: '{% include ''forms/data.html.twig'' %}'
|
||||
-
|
||||
save:
|
||||
fileprefix: feedback-
|
||||
dateformat: Ymd-His-u
|
||||
extension: txt
|
||||
body: '{% include ''forms/data.html.twig'' %}'
|
||||
-
|
||||
message: 'Your request has been sent!'
|
||||
-
|
||||
display: thankyou
|
||||
title: 'Temporary disabled'
|
||||
header_image: introverts.jpg
|
||||
---
|
||||
|
||||
<h1 class="form-title"> Extra Storage Space </h1>
|
||||
<p class="form-text">It is possible to extend your cloud storage to 14, 29 or 54 GB for the cost of 0.15 euro per GB per month. You can also choose to use some of all of the additional space for mail storage, please specify that in the comment section in the request form.</p>
|
||||
<h1 class="form-title"> Temorary disabled </h1>
|
||||
<p class="form-text"> Due to huge backlog in incoming custom requests and work being done to improve our response time, we have decided to temporarily disable this feature.<br>Sorry for the inconvenience and hope to have it up and running again as soon as possible.</p>
|
||||
|
|
113
pages/forms/extra-storage-space/form.en.md.bak
Normal file
113
pages/forms/extra-storage-space/form.en.md.bak
Normal file
|
@ -0,0 +1,113 @@
|
|||
---
|
||||
title: 'Extra Storage Space'
|
||||
form:
|
||||
name: 'Extra Storage Space'
|
||||
fields:
|
||||
-
|
||||
name: username
|
||||
label: 'User Name'
|
||||
placeholder: 'Enter the Disroot user name'
|
||||
autofocus: 'on'
|
||||
autocomplete: 'on'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.]*'
|
||||
required: true
|
||||
-
|
||||
name: email
|
||||
label: 'Contact Email Address'
|
||||
placeholder: 'Enter an email address to contact you'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z0-9.-_@]*'
|
||||
required: true
|
||||
-
|
||||
name: 'Amount of Space'
|
||||
label: 'Total Storage Space'
|
||||
type: select
|
||||
default: 14GB
|
||||
options:
|
||||
14GB: '14GB (2.10€ per month)'
|
||||
29GB: '29GB (4.35€ per month)'
|
||||
54GB: '54GB (8.10€ per month)'
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: comments
|
||||
type: textarea
|
||||
-
|
||||
name: 'payment details'
|
||||
type: display
|
||||
size: large
|
||||
label: ' '
|
||||
markdown: true
|
||||
content: '**Payment details:**'
|
||||
-
|
||||
name: country
|
||||
label: 'Country (necessary for VAT purposes)'
|
||||
placeholder: 'Please specify the country your paying account is registered in'
|
||||
type: text
|
||||
validate:
|
||||
pattern: '[A-Za-z]*'
|
||||
required: true
|
||||
-
|
||||
name: payment
|
||||
label: 'Payment via (May be subjected to extra transaction fees)'
|
||||
placeholder: select
|
||||
type: select
|
||||
options:
|
||||
paypal: Paypal
|
||||
bank: 'Bank transfer'
|
||||
faircoin: Faircoin
|
||||
bitcoin: Bitcoin
|
||||
patreon: Patreon
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: frequency
|
||||
label: Monthly/Yearly
|
||||
type: radio
|
||||
default: yearly
|
||||
options:
|
||||
monthly: Monthly
|
||||
yearly: Yearly
|
||||
validate:
|
||||
required: true
|
||||
-
|
||||
name: honeypot
|
||||
type: honeypot
|
||||
buttons:
|
||||
-
|
||||
type: submit
|
||||
value: Submit
|
||||
-
|
||||
type: reset
|
||||
value: Reset
|
||||
process:
|
||||
-
|
||||
email:
|
||||
from: extra-storage@disroot.org
|
||||
to: '{{ form.value.email }}'
|
||||
subject: '[Disroot] Extra Storage Request'
|
||||
body: 'Dear {{ form.value.username }}, <br><br> We have received a request for extra storage space. <br><br>You should receive your confirmation per E-mail with your billing reference. <br> Once we receive your payment we will assign you the extra storage. <br><br> Thank you for supporting Disroot!'
|
||||
-
|
||||
email:
|
||||
from: extra-storage@disroot.org
|
||||
to: '{{ config.plugins.email.to }}'
|
||||
reply_to: '{{ form.value.email }}'
|
||||
subject: '[Extra storage request] - {{ form.value.username|e }}'
|
||||
body: '{% include ''forms/data.html.twig'' %}'
|
||||
-
|
||||
save:
|
||||
fileprefix: feedback-
|
||||
dateformat: Ymd-His-u
|
||||
extension: txt
|
||||
body: '{% include ''forms/data.html.twig'' %}'
|
||||
-
|
||||
message: 'Your request has been sent!'
|
||||
-
|
||||
display: thankyou
|
||||
---
|
||||
|
||||
<h1 class="form-title"> Extra Storage Space </h1>
|
||||
<p class="form-text">It is possible to extend your cloud storage to 14, 29 or 54 GB for the cost of 0.15 euro per GB per month. You can also choose to use some of all of the additional space for mail storage, please specify that in the comment section in the request form.</p>
|
Loading…
Reference in a new issue