Mailcow auf bestimmte Betreffe automatisch antworten?

1 Antwort

Vom Fragesteller als hilfreich ausgezeichnet

Ja, das geht mit einem Filter. Zum Beispiel:

# Sieve filter for automated response
require ["fileinto", "vacation"];

# Check if the subject contains the word "urgent"
if header :contains "subject" "urgent" {
  # Send an automated reply
  vacation :days 1 :addresses ["me@example.com"] "I am currently out of the office and will reply to your message as soon as possible.";
  # Stop processing further rules
  stop;
}

# Otherwise, file the message into the inbox
else {
  fileinto "INBOX";
}
Woher ich das weiß:Studium / Ausbildung – Ich studiere Informatik