Subversion Repositories HomeAutomation

Rev

Details | Last modification | View Log | SVN | RSS feed

Rev Author Line No. Line
15 arune 1
<?xml version='1.0' encoding='utf-8'?>
2
 
3
<!-- Configuration file for the Mailchecker Macbeth module. -->
4
<modmailcheck>
5
 
6
    <!-- how often to poll, in minutes -->
7
    <option name="checkinterval" value="5"/>
8
 
9
    <!-- verbose / simple (verbose prints the number of new mail) -->
10
    <option name="mode" value="simple"/>
11
 
12
    <!-- text to display -->
13
    <option name="displaytext" value="New mail"/>
14
    <!-- Displaytext when mode is verbose, # will be printed as the number of mail -->
15
    <!--option name="displaytext" value="# new mail"/-->
16
 
17
    <list name="accounts">
18
        <item>
19
            <!--  -->
20
            <field name="server" value="pop3.server.com"/>
21
            <!--  -->
22
            <field name="port" value="110"/>
23
            <!-- sometimes just blipp, sometimes blipp@server.com -->
24
            <field name="accountname" value="blipp@server.com"/>
25
            <!--  -->
26
            <field name="password" value="yourpassword"/>
27
        </item>
28
        <item>
29
            <!-- Next account, can be on the same server but with different accountnames -->
30
            <field name="server" value="pop3.server2.com"/>
31
            <!--  -->
32
            <field name="port" value="110"/>
33
            <!-- sometimes just blipp, sometimes blipp@server.com -->
34
            <field name="accountname" value="blipp@server2.com"/>
35
            <!--  -->
36
            <field name="password" value="yourpassword"/>
37
        </item>
38
    </list>
39
 
40
</modmailcheck>