Exim 4.72 release
[exim-website.git] / config.samples / C035
1 Date: Tue, 8 Feb 2000 11:19:35 -0200
2 From: Joao Alves <cpd@cosco.com.br>
3
4 These configurations enable exim and hylafax (www.hylafax.org)  work
5 together, i mean sending fax by email (user@123456.fax).
6
7 Obs: There is a problem faxmail does not  support email in html format. If
8 someone solved this problem, pls tell me.
9
10 a cortesy
11             Joao Alves/ Cosco Brazil
12
13 -------------------------------------------
14
15
16 exim.conf
17
18
19 ######################################################################
20 #                      TRANSPORTS CONFIGURATION                      #
21 ######################################################################
22 #                       ORDER DOES NOT MATTER                        #
23 #     Only one appropriate transport is called for each delivery.    #
24 ######################################################################
25
26 # A transport is used only when referenced from a director or a router that
27 # successfully handles an address.
28
29 # Estas configuracoes sao para habilitar a envio de fax por email
30 fax:
31   driver = pipe
32   user = cpd
33   command ="/usr/bin/faxmail -d ${local_part}@${extract{1}{.}{$domain}}"
34   home_directory = /usr/bin
35
36 ######################################################################
37 #                      ROUTERS CONFIGURATION                         #
38 #            Specifies how remote addresses are handled              #
39 ######################################################################
40 #                          ORDER DOES MATTER                         #
41 #  A remote address is passed to each in turn until it is accepted.  #
42 ######################################################################
43
44 # Estas configuracoes sao para habilitar o envia de fax por email
45 fax:
46    driver = domainlist
47    transport = fax
48    route_list ="*.fax"
49
50 # End of Exim configuration file
51
52
53
54
55 --
56 ## List details at http://www.exim.org/mailman/listinfo/exim-users Exim details at http://www.exim.org/ ##
57