Giter Club home page Giter Club logo

Comments (4)

sebres avatar sebres commented on June 11, 2024 1

I'm slowly really in mode to delete all mailing actions from stock fail2ban.
Neither it is advisable to use them at all, nor I am interested to see issues like that now and in the future.

from fail2ban.

RalphCorderoy avatar RalphCorderoy commented on June 11, 2024

Before deleting the ability to send email from fail2ban, it would be nice to document an alternative. For example, logging from fail2ban to syslog and configure whatever is providing syslog to generate an email.

But other programs manage to generate a MIME email which also allows the possibility of multiple parts AKA attachments.

from fail2ban.

sebres avatar sebres commented on June 11, 2024

I'm not against all mailing actions, but against many of them (especially such with whois etc)...
And even after "removal" one could use them further, just we'd not need to support everything around that actions here.
What I meant was rather "stop to support them officially"... There are really too much issues with mailing actions that bother users and our support, and waste my time for nothing.

As for the issue: guess many places would expect something like that:

- _whois = whois <ip> || echo "missing whois program"
+ _whois = whois <ip> | fold -sw 900 || echo "missing whois program"

in

_whois = whois <ip> || echo "missing whois program"

from fail2ban.

RalphCorderoy avatar RalphCorderoy commented on June 11, 2024

I sympathise with email actions causing too much demand for support.

fold -sw 900 isn't sufficient in the general case.

$ printf '123·456\n' | fold -sw 4
123�
�456
$

A non-MIME email has to be 7-bit ASCII. Text using ISO 8859-1, UTF-8, etc. encodings need MIME encoding. Just adding the fields

MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit

to the email's header helps but only if the text is valid UTF-8. Using iconv(1) or uconv(8) can help by transliterating or escaping invalid bytes.

But if mail is to be supported then I'd suggest a dependency on a mail(1) which supports: MIME; UTF-8 in fields and the body; possibly attachments. It is its job to do one thing well.

from fail2ban.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.