Configure Postfix and Dovecot-LMTP to receive mail via SMTPUTF8?











up vote
6
down vote

favorite
1












I am running a Postfix server which uses Dovecot LMTP for mail delivery. I am doing this because it plays well with sieve.



However, I have gotten some email lately with Unicode in the subject line.



This mail is received OK by Postfix, which clearly supports SMTPUTF8 - however, it dies when it gets to LMTP:



<me@myhost> (expanded from <meother@mhost>): SMTPUTF8 is required, but
was not offered by host myhost[public/lmtp]



I read in the Postfix SMTPUTF8 documentation that,




When a message is received with the SMTPUTF8 request, Postfix will deliver the message to a non-SMTPUTF8 SMTP or LMTP server ONLY if:



No message header value contains UTF-8.



The envelope sender address contains no UTF-8,



No envelope recipient address for that specific SMTP/LMTP delivery transaction contains UTF-8.



NOTE: Recipients in other email delivery transactions for that same message may still contain UTF-8.



Otherwise, Postfix will return the recipient(s) for that email delivery transaction as undeliverable. The delivery status notification message will be an SMTPUTF8 message. It will therefore be subject to the same restrictions as email that is received with the SMTPUTF8 request.




-- http://www.postfix.org/SMTPUTF8_README.html#detecting



The relevant part is "Postfix will deliver ... to a non-SMTPUTF8 ... LMTP server ONLY if ... [there is no UTF8 in the message]".



This is awkwardly-worded, but the implication is that Postfix will only pass UTF8 mail along to a downstream server if it supports UTF8.



Because I am receiving UTF8 mail, Postfix is refusing to deliver it to Dovecot LMTP.



Which brings me to a couple of questions:




  • Does Dovecot LMTP support SMTPUTF8? (It appears not: http://www.dovecot.org/list/dovecot/2013-January/thread.html#87756)

  • Does Postfix have a "soft fail" mode for this, whereby it can queue the mail for later delivery, bypass LMTP, or do something more intelligent than falling over?










share|improve this question


















  • 1




    From ftp.uma.es/mirror/postfix/doc/SMTPUTF8_README.html "SMTP-based content filters (Amavisd) and LMTP servers (Dovecot) will need to be updated to support SMTPUTF8. A notice has been sent to the respective maintainers."
    – Rui F Ribeiro
    Oct 31 '16 at 16:04










  • Ran into this too. Statement by Dovecot developer on the mailing list is SMTPUTF8 support ‘is being considered’: link (Sept 2018).
    – glts
    Oct 1 at 18:21















up vote
6
down vote

favorite
1












I am running a Postfix server which uses Dovecot LMTP for mail delivery. I am doing this because it plays well with sieve.



However, I have gotten some email lately with Unicode in the subject line.



This mail is received OK by Postfix, which clearly supports SMTPUTF8 - however, it dies when it gets to LMTP:



<me@myhost> (expanded from <meother@mhost>): SMTPUTF8 is required, but
was not offered by host myhost[public/lmtp]



I read in the Postfix SMTPUTF8 documentation that,




When a message is received with the SMTPUTF8 request, Postfix will deliver the message to a non-SMTPUTF8 SMTP or LMTP server ONLY if:



No message header value contains UTF-8.



The envelope sender address contains no UTF-8,



No envelope recipient address for that specific SMTP/LMTP delivery transaction contains UTF-8.



NOTE: Recipients in other email delivery transactions for that same message may still contain UTF-8.



Otherwise, Postfix will return the recipient(s) for that email delivery transaction as undeliverable. The delivery status notification message will be an SMTPUTF8 message. It will therefore be subject to the same restrictions as email that is received with the SMTPUTF8 request.




-- http://www.postfix.org/SMTPUTF8_README.html#detecting



The relevant part is "Postfix will deliver ... to a non-SMTPUTF8 ... LMTP server ONLY if ... [there is no UTF8 in the message]".



This is awkwardly-worded, but the implication is that Postfix will only pass UTF8 mail along to a downstream server if it supports UTF8.



Because I am receiving UTF8 mail, Postfix is refusing to deliver it to Dovecot LMTP.



Which brings me to a couple of questions:




  • Does Dovecot LMTP support SMTPUTF8? (It appears not: http://www.dovecot.org/list/dovecot/2013-January/thread.html#87756)

  • Does Postfix have a "soft fail" mode for this, whereby it can queue the mail for later delivery, bypass LMTP, or do something more intelligent than falling over?










share|improve this question


















  • 1




    From ftp.uma.es/mirror/postfix/doc/SMTPUTF8_README.html "SMTP-based content filters (Amavisd) and LMTP servers (Dovecot) will need to be updated to support SMTPUTF8. A notice has been sent to the respective maintainers."
    – Rui F Ribeiro
    Oct 31 '16 at 16:04










  • Ran into this too. Statement by Dovecot developer on the mailing list is SMTPUTF8 support ‘is being considered’: link (Sept 2018).
    – glts
    Oct 1 at 18:21













up vote
6
down vote

favorite
1









up vote
6
down vote

favorite
1






1





I am running a Postfix server which uses Dovecot LMTP for mail delivery. I am doing this because it plays well with sieve.



However, I have gotten some email lately with Unicode in the subject line.



This mail is received OK by Postfix, which clearly supports SMTPUTF8 - however, it dies when it gets to LMTP:



<me@myhost> (expanded from <meother@mhost>): SMTPUTF8 is required, but
was not offered by host myhost[public/lmtp]



I read in the Postfix SMTPUTF8 documentation that,




When a message is received with the SMTPUTF8 request, Postfix will deliver the message to a non-SMTPUTF8 SMTP or LMTP server ONLY if:



No message header value contains UTF-8.



The envelope sender address contains no UTF-8,



No envelope recipient address for that specific SMTP/LMTP delivery transaction contains UTF-8.



NOTE: Recipients in other email delivery transactions for that same message may still contain UTF-8.



Otherwise, Postfix will return the recipient(s) for that email delivery transaction as undeliverable. The delivery status notification message will be an SMTPUTF8 message. It will therefore be subject to the same restrictions as email that is received with the SMTPUTF8 request.




-- http://www.postfix.org/SMTPUTF8_README.html#detecting



The relevant part is "Postfix will deliver ... to a non-SMTPUTF8 ... LMTP server ONLY if ... [there is no UTF8 in the message]".



This is awkwardly-worded, but the implication is that Postfix will only pass UTF8 mail along to a downstream server if it supports UTF8.



Because I am receiving UTF8 mail, Postfix is refusing to deliver it to Dovecot LMTP.



Which brings me to a couple of questions:




  • Does Dovecot LMTP support SMTPUTF8? (It appears not: http://www.dovecot.org/list/dovecot/2013-January/thread.html#87756)

  • Does Postfix have a "soft fail" mode for this, whereby it can queue the mail for later delivery, bypass LMTP, or do something more intelligent than falling over?










share|improve this question













I am running a Postfix server which uses Dovecot LMTP for mail delivery. I am doing this because it plays well with sieve.



However, I have gotten some email lately with Unicode in the subject line.



This mail is received OK by Postfix, which clearly supports SMTPUTF8 - however, it dies when it gets to LMTP:



<me@myhost> (expanded from <meother@mhost>): SMTPUTF8 is required, but
was not offered by host myhost[public/lmtp]



I read in the Postfix SMTPUTF8 documentation that,




When a message is received with the SMTPUTF8 request, Postfix will deliver the message to a non-SMTPUTF8 SMTP or LMTP server ONLY if:



No message header value contains UTF-8.



The envelope sender address contains no UTF-8,



No envelope recipient address for that specific SMTP/LMTP delivery transaction contains UTF-8.



NOTE: Recipients in other email delivery transactions for that same message may still contain UTF-8.



Otherwise, Postfix will return the recipient(s) for that email delivery transaction as undeliverable. The delivery status notification message will be an SMTPUTF8 message. It will therefore be subject to the same restrictions as email that is received with the SMTPUTF8 request.




-- http://www.postfix.org/SMTPUTF8_README.html#detecting



The relevant part is "Postfix will deliver ... to a non-SMTPUTF8 ... LMTP server ONLY if ... [there is no UTF8 in the message]".



This is awkwardly-worded, but the implication is that Postfix will only pass UTF8 mail along to a downstream server if it supports UTF8.



Because I am receiving UTF8 mail, Postfix is refusing to deliver it to Dovecot LMTP.



Which brings me to a couple of questions:




  • Does Dovecot LMTP support SMTPUTF8? (It appears not: http://www.dovecot.org/list/dovecot/2013-January/thread.html#87756)

  • Does Postfix have a "soft fail" mode for this, whereby it can queue the mail for later delivery, bypass LMTP, or do something more intelligent than falling over?







postfix unicode smtp dovecot






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Oct 31 '16 at 14:55









g33kz0r

1,0341018




1,0341018








  • 1




    From ftp.uma.es/mirror/postfix/doc/SMTPUTF8_README.html "SMTP-based content filters (Amavisd) and LMTP servers (Dovecot) will need to be updated to support SMTPUTF8. A notice has been sent to the respective maintainers."
    – Rui F Ribeiro
    Oct 31 '16 at 16:04










  • Ran into this too. Statement by Dovecot developer on the mailing list is SMTPUTF8 support ‘is being considered’: link (Sept 2018).
    – glts
    Oct 1 at 18:21














  • 1




    From ftp.uma.es/mirror/postfix/doc/SMTPUTF8_README.html "SMTP-based content filters (Amavisd) and LMTP servers (Dovecot) will need to be updated to support SMTPUTF8. A notice has been sent to the respective maintainers."
    – Rui F Ribeiro
    Oct 31 '16 at 16:04










  • Ran into this too. Statement by Dovecot developer on the mailing list is SMTPUTF8 support ‘is being considered’: link (Sept 2018).
    – glts
    Oct 1 at 18:21








1




1




From ftp.uma.es/mirror/postfix/doc/SMTPUTF8_README.html "SMTP-based content filters (Amavisd) and LMTP servers (Dovecot) will need to be updated to support SMTPUTF8. A notice has been sent to the respective maintainers."
– Rui F Ribeiro
Oct 31 '16 at 16:04




From ftp.uma.es/mirror/postfix/doc/SMTPUTF8_README.html "SMTP-based content filters (Amavisd) and LMTP servers (Dovecot) will need to be updated to support SMTPUTF8. A notice has been sent to the respective maintainers."
– Rui F Ribeiro
Oct 31 '16 at 16:04












Ran into this too. Statement by Dovecot developer on the mailing list is SMTPUTF8 support ‘is being considered’: link (Sept 2018).
– glts
Oct 1 at 18:21




Ran into this too. Statement by Dovecot developer on the mailing list is SMTPUTF8 support ‘is being considered’: link (Sept 2018).
– glts
Oct 1 at 18:21










1 Answer
1






active

oldest

votes

















up vote
4
down vote



accepted










TL;DR: See Summing up!



I regularly also get emails with UTF-8 chars in the Subject: line. Never so far any within other headers.



While a 'soft-fail'-mode in postfix is unknown to me, you may setup another smtp transport and filtering bounces through it as a kind of failsafe-mode. However, I would have yet to complete this setup myself. As of now, the bounces are sticking to the queue as undeliverable until expiry. At least they don't just get returned back to sender and I've got an eye on the sticky members of the queue. On the other hand, I am reluctant to go down further that road, now that the following method works for me(tm):



The working solution (in the case of UTF-8 chars in Subject: only) was to just disable postfix' smtputf8_enable feature which is nowadays defaulting to "yes" (using an up-to-date debian, that is). In main.cf add:



smtputf8_enable = no


Fiddling about with smtputf8_autodetect_classes was inconclusive.



The email msgs featuring the UTF-8 Subject: line are now being processed by postfix and saved by dovecot without any problems.



The solution might look counterintuitive, especially regarding the slighty awkwardly-worded postfix documentation (as you already mentioned).



The latest update about SMTPUTF8 support in dovecot seems to be the one you are referencing. Some place else I recall seeing a post the SMTPUTF8 in dovecot won't be implemented anytime soon if at all [citation needed]. Not sure whether this was an authoritative statement or not.



Another comment about dovecot and SMTPUTF8 can be found here (including your reference and this SE question): https://dovecot.org/list/dovecot/2016-November/106029.html
Together with this next post it seems the topic stalled at roughly end of 2016: https://dovecot.org/list/dovecot/2016-September/105474.html



Summing up: today, if you don't need SMTPUTF8 support in headers other than the Subject: header, you might get away with just disabling smtputf8_enable in postfix' main.cf and be happy as-is.



HTH






share|improve this answer























  • Interesting. I've made the change in my mail server config and will accept your answer if it works.
    – g33kz0r
    Nov 13 '17 at 22:15










  • Did it solve your problem w/ SMTPUTF8 support as well?
    – Gen.Stack
    Feb 26 at 0:21










  • Worked for me..
    – g33kz0r
    Oct 4 at 2:21











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f320091%2fconfigure-postfix-and-dovecot-lmtp-to-receive-mail-via-smtputf8%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
4
down vote



accepted










TL;DR: See Summing up!



I regularly also get emails with UTF-8 chars in the Subject: line. Never so far any within other headers.



While a 'soft-fail'-mode in postfix is unknown to me, you may setup another smtp transport and filtering bounces through it as a kind of failsafe-mode. However, I would have yet to complete this setup myself. As of now, the bounces are sticking to the queue as undeliverable until expiry. At least they don't just get returned back to sender and I've got an eye on the sticky members of the queue. On the other hand, I am reluctant to go down further that road, now that the following method works for me(tm):



The working solution (in the case of UTF-8 chars in Subject: only) was to just disable postfix' smtputf8_enable feature which is nowadays defaulting to "yes" (using an up-to-date debian, that is). In main.cf add:



smtputf8_enable = no


Fiddling about with smtputf8_autodetect_classes was inconclusive.



The email msgs featuring the UTF-8 Subject: line are now being processed by postfix and saved by dovecot without any problems.



The solution might look counterintuitive, especially regarding the slighty awkwardly-worded postfix documentation (as you already mentioned).



The latest update about SMTPUTF8 support in dovecot seems to be the one you are referencing. Some place else I recall seeing a post the SMTPUTF8 in dovecot won't be implemented anytime soon if at all [citation needed]. Not sure whether this was an authoritative statement or not.



Another comment about dovecot and SMTPUTF8 can be found here (including your reference and this SE question): https://dovecot.org/list/dovecot/2016-November/106029.html
Together with this next post it seems the topic stalled at roughly end of 2016: https://dovecot.org/list/dovecot/2016-September/105474.html



Summing up: today, if you don't need SMTPUTF8 support in headers other than the Subject: header, you might get away with just disabling smtputf8_enable in postfix' main.cf and be happy as-is.



HTH






share|improve this answer























  • Interesting. I've made the change in my mail server config and will accept your answer if it works.
    – g33kz0r
    Nov 13 '17 at 22:15










  • Did it solve your problem w/ SMTPUTF8 support as well?
    – Gen.Stack
    Feb 26 at 0:21










  • Worked for me..
    – g33kz0r
    Oct 4 at 2:21















up vote
4
down vote



accepted










TL;DR: See Summing up!



I regularly also get emails with UTF-8 chars in the Subject: line. Never so far any within other headers.



While a 'soft-fail'-mode in postfix is unknown to me, you may setup another smtp transport and filtering bounces through it as a kind of failsafe-mode. However, I would have yet to complete this setup myself. As of now, the bounces are sticking to the queue as undeliverable until expiry. At least they don't just get returned back to sender and I've got an eye on the sticky members of the queue. On the other hand, I am reluctant to go down further that road, now that the following method works for me(tm):



The working solution (in the case of UTF-8 chars in Subject: only) was to just disable postfix' smtputf8_enable feature which is nowadays defaulting to "yes" (using an up-to-date debian, that is). In main.cf add:



smtputf8_enable = no


Fiddling about with smtputf8_autodetect_classes was inconclusive.



The email msgs featuring the UTF-8 Subject: line are now being processed by postfix and saved by dovecot without any problems.



The solution might look counterintuitive, especially regarding the slighty awkwardly-worded postfix documentation (as you already mentioned).



The latest update about SMTPUTF8 support in dovecot seems to be the one you are referencing. Some place else I recall seeing a post the SMTPUTF8 in dovecot won't be implemented anytime soon if at all [citation needed]. Not sure whether this was an authoritative statement or not.



Another comment about dovecot and SMTPUTF8 can be found here (including your reference and this SE question): https://dovecot.org/list/dovecot/2016-November/106029.html
Together with this next post it seems the topic stalled at roughly end of 2016: https://dovecot.org/list/dovecot/2016-September/105474.html



Summing up: today, if you don't need SMTPUTF8 support in headers other than the Subject: header, you might get away with just disabling smtputf8_enable in postfix' main.cf and be happy as-is.



HTH






share|improve this answer























  • Interesting. I've made the change in my mail server config and will accept your answer if it works.
    – g33kz0r
    Nov 13 '17 at 22:15










  • Did it solve your problem w/ SMTPUTF8 support as well?
    – Gen.Stack
    Feb 26 at 0:21










  • Worked for me..
    – g33kz0r
    Oct 4 at 2:21













up vote
4
down vote



accepted







up vote
4
down vote



accepted






TL;DR: See Summing up!



I regularly also get emails with UTF-8 chars in the Subject: line. Never so far any within other headers.



While a 'soft-fail'-mode in postfix is unknown to me, you may setup another smtp transport and filtering bounces through it as a kind of failsafe-mode. However, I would have yet to complete this setup myself. As of now, the bounces are sticking to the queue as undeliverable until expiry. At least they don't just get returned back to sender and I've got an eye on the sticky members of the queue. On the other hand, I am reluctant to go down further that road, now that the following method works for me(tm):



The working solution (in the case of UTF-8 chars in Subject: only) was to just disable postfix' smtputf8_enable feature which is nowadays defaulting to "yes" (using an up-to-date debian, that is). In main.cf add:



smtputf8_enable = no


Fiddling about with smtputf8_autodetect_classes was inconclusive.



The email msgs featuring the UTF-8 Subject: line are now being processed by postfix and saved by dovecot without any problems.



The solution might look counterintuitive, especially regarding the slighty awkwardly-worded postfix documentation (as you already mentioned).



The latest update about SMTPUTF8 support in dovecot seems to be the one you are referencing. Some place else I recall seeing a post the SMTPUTF8 in dovecot won't be implemented anytime soon if at all [citation needed]. Not sure whether this was an authoritative statement or not.



Another comment about dovecot and SMTPUTF8 can be found here (including your reference and this SE question): https://dovecot.org/list/dovecot/2016-November/106029.html
Together with this next post it seems the topic stalled at roughly end of 2016: https://dovecot.org/list/dovecot/2016-September/105474.html



Summing up: today, if you don't need SMTPUTF8 support in headers other than the Subject: header, you might get away with just disabling smtputf8_enable in postfix' main.cf and be happy as-is.



HTH






share|improve this answer














TL;DR: See Summing up!



I regularly also get emails with UTF-8 chars in the Subject: line. Never so far any within other headers.



While a 'soft-fail'-mode in postfix is unknown to me, you may setup another smtp transport and filtering bounces through it as a kind of failsafe-mode. However, I would have yet to complete this setup myself. As of now, the bounces are sticking to the queue as undeliverable until expiry. At least they don't just get returned back to sender and I've got an eye on the sticky members of the queue. On the other hand, I am reluctant to go down further that road, now that the following method works for me(tm):



The working solution (in the case of UTF-8 chars in Subject: only) was to just disable postfix' smtputf8_enable feature which is nowadays defaulting to "yes" (using an up-to-date debian, that is). In main.cf add:



smtputf8_enable = no


Fiddling about with smtputf8_autodetect_classes was inconclusive.



The email msgs featuring the UTF-8 Subject: line are now being processed by postfix and saved by dovecot without any problems.



The solution might look counterintuitive, especially regarding the slighty awkwardly-worded postfix documentation (as you already mentioned).



The latest update about SMTPUTF8 support in dovecot seems to be the one you are referencing. Some place else I recall seeing a post the SMTPUTF8 in dovecot won't be implemented anytime soon if at all [citation needed]. Not sure whether this was an authoritative statement or not.



Another comment about dovecot and SMTPUTF8 can be found here (including your reference and this SE question): https://dovecot.org/list/dovecot/2016-November/106029.html
Together with this next post it seems the topic stalled at roughly end of 2016: https://dovecot.org/list/dovecot/2016-September/105474.html



Summing up: today, if you don't need SMTPUTF8 support in headers other than the Subject: header, you might get away with just disabling smtputf8_enable in postfix' main.cf and be happy as-is.



HTH







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 29 at 22:57

























answered Nov 5 '17 at 16:37









Gen.Stack

895




895












  • Interesting. I've made the change in my mail server config and will accept your answer if it works.
    – g33kz0r
    Nov 13 '17 at 22:15










  • Did it solve your problem w/ SMTPUTF8 support as well?
    – Gen.Stack
    Feb 26 at 0:21










  • Worked for me..
    – g33kz0r
    Oct 4 at 2:21


















  • Interesting. I've made the change in my mail server config and will accept your answer if it works.
    – g33kz0r
    Nov 13 '17 at 22:15










  • Did it solve your problem w/ SMTPUTF8 support as well?
    – Gen.Stack
    Feb 26 at 0:21










  • Worked for me..
    – g33kz0r
    Oct 4 at 2:21
















Interesting. I've made the change in my mail server config and will accept your answer if it works.
– g33kz0r
Nov 13 '17 at 22:15




Interesting. I've made the change in my mail server config and will accept your answer if it works.
– g33kz0r
Nov 13 '17 at 22:15












Did it solve your problem w/ SMTPUTF8 support as well?
– Gen.Stack
Feb 26 at 0:21




Did it solve your problem w/ SMTPUTF8 support as well?
– Gen.Stack
Feb 26 at 0:21












Worked for me..
– g33kz0r
Oct 4 at 2:21




Worked for me..
– g33kz0r
Oct 4 at 2:21


















draft saved

draft discarded




















































Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f320091%2fconfigure-postfix-and-dovecot-lmtp-to-receive-mail-via-smtputf8%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

サソリ

広島県道265号伴広島線

Accessing regular linux commands in Huawei's Dopra Linux