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
|
##########################################################################
# Ruleset file for the Belgium Interzonal calls applicable since 98/03/15.
#
# Rules:
# - Peak hours: 08:00 -> 18:00.
# - Off-peak : the rest + national holidays.
# - Minimum entry costs (flat_init_costs) are halfed when off-peak.
# (how to implement?)
# - Calls longer than 10' have 30% reduction when off-peak to a bbs.
# Calls longer than 10' have 50% reduction when off-peak to the net!
# (how to implement?)
#
# guy.zelck@eds.com
################################################################
# NAME OF THE RULESET. This is NEEDED for accounting purposes.
name=Belgium_interzonal
################################################################
# currency settings
################################################################
# Currency symbol, default = "$".
# define Bf (Begische Frank) to be used as currency
currency_symbol=Bf
# Position of the currency symbol, default is "right".
currency_position=right
# Define the number of significant digits.
# (not absolutely needed, default is "2"
currency_digits=3
################################################################
# connection settings
################################################################
# NOTE: rules are applied from top to bottom - the
# LAST matching rule is the one used for the
# cost computations.
# This is charged whenever you connect. If you don't have to
# pay per-connection, use "0" here or comment it out.
per_connection=0.0
# Minimum costs per connection. If the costs of a phone
# call are less than this value, this value is used instead
minimum_costs=0.0
# This is the minimum time slice you allways have to pay.
# It has priority over the default rule.
# Trouble here is that during off-peak hours it's half the price!
# How can this be implemented?
flat_init_costs=(7,60)
# Let's take the off-peak hour rate as the default.
default=(3.5,60)
# During off-peak hours when a call takes > 10' you have 30% reduction.
# ?
# Peak hours.
on (monday..friday) between (08:00..18:00) use (7,60)
# Holidays (mm/dd) in '98 have the off-peak rate.
on (01/01, easter, easter+1, 05/01, easter+39, easter+49, easter+50, 07/21, 08/15, 11/01, 11/11, 12/25) between () use (1,60)
#
# 01/01 Nieuwjaar.
# easter Pasen
# easter+1 Paasmaandag
# 05/01 Feest van de arbeid
# easter+39 O.H.-Hemelvaart
# easter+49 Pinksteren
# easter+50 Pinkstermaandag
# 07/21 Nationale Feestdag
# 08/15 O.L.V.-Hemelvaart
# 11/01 Allerheiligen
# 11/11 Wapenstilstand 1918
# 12/25 Kerstmis
|