blob: 6bc546cc1fab5667bf9f7539978fd6154489d4cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE> [Mageia-discuss] Remote login
</TITLE>
<LINK REL="Index" HREF="index.html" >
<LINK REL="made" HREF="mailto:mageia-discuss%40mageia.org?Subject=Re%3A%20%5BMageia-discuss%5D%20Remote%20login&In-Reply-To=%3C4F776F66.7070208%40pilppa.org%3E">
<META NAME="robots" CONTENT="index,nofollow">
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
<LINK REL="Previous" HREF="006839.html">
<LINK REL="Next" HREF="006840.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Mageia-discuss] Remote login</H1>
<B>Mika Laitio</B>
<A HREF="mailto:mageia-discuss%40mageia.org?Subject=Re%3A%20%5BMageia-discuss%5D%20Remote%20login&In-Reply-To=%3C4F776F66.7070208%40pilppa.org%3E"
TITLE="[Mageia-discuss] Remote login">lamikr at pilppa.org
</A><BR>
<I>Sat Mar 31 22:56:06 CEST 2012</I>
<P><UL>
<LI>Previous message: <A HREF="006839.html">[Mageia-discuss] Remote login
</A></li>
<LI>Next message: <A HREF="006840.html">[Mageia-discuss] what happened to mageia servers
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#6846">[ date ]</a>
<a href="thread.html#6846">[ thread ]</a>
<a href="subject.html#6846">[ subject ]</a>
<a href="author.html#6846">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>On 03/31/2012 03:42 PM, Oliver Burger wrote:
><i> 2012/3/31 Marc Paré <<A HREF="https://www.mageia.org/mailman/listinfo/mageia-discuss">marc at marcpare.com</A>>:
</I>>><i> Le 2012-03-30 17:30, Oliver Burger a écrit :
</I>>>><i> Am 30.03.2012 23:22, schrieb Marc Paré:
</I>>>><i> But in the long run, wouldn't it be better to use some server side
</I>>>><i> filtering?
</I>>>><i> Perhaps setting up an imap server? But I don't have much experience on
</I>>>><i> that.
</I>>>><i>
</I>>>><i> Oliver
</I>>>><i>
</I>>><i>
</I>>><i> I hadn't thought of running an imap server, but this does sound appealing
</I>>><i> for my uses. I wonder if it would be too "resource" demanding to ask from
</I>>><i> my desktop computer to do both imap as well as my regular work on the
</I>>><i> desktop.
</I>>><i>
</I>><i> No, a standard setup (postfix and dovecot) does not use many resources
</I>><i> and is rather easy to setup.
</I>
I use this combination + spamassassin on the server side.
Users can have their own automatic filtering of emails to inbox
subfolders by doing a file dovecot.sieve in their home folders which can
for example then have rules like this:
if header :contains "subject" ["[Mageia-dev]"] {
fileinto "mageia-dev";
stop;
}
if header :contains "X-Spam-Flag" ["YES"] {
fileinto "spam";
stop;
}
else {
keep;
}
This rule would basically move all mageia-dev messages to mageia-dev
folder, all messages detected by spamassassing to spam folder and then
keep all other messages in the inbox.
Setting up the spamassassin daemon parts was most confussing and I do
not have exact guides in my hand. (web was floating with various guides
for postfix+dovecot+spamassassing combination from which some worked
while some did not...)
Mika
</PRE>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI>Previous message: <A HREF="006839.html">[Mageia-discuss] Remote login
</A></li>
<LI>Next message: <A HREF="006840.html">[Mageia-discuss] what happened to mageia servers
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#6846">[ date ]</a>
<a href="thread.html#6846">[ thread ]</a>
<a href="subject.html#6846">[ subject ]</a>
<a href="author.html#6846">[ author ]</a>
</LI>
</UL>
<hr>
<a href="https://www.mageia.org/mailman/listinfo/mageia-discuss">More information about the Mageia-discuss
mailing list</a><br>
</body></html>
|