payment: note that Stripe has instituted an additional 1% fee for non-US cards
[hcoop/portal.git] / config.sml
1 structure Config :> CONFIG = struct
2
3 val scratchDir = "/afs/hcoop.net/user/h/hc/hcoop"
4 val urlPrefix = "https://members.hcoop.net/portal/"
5 val emailSuffix = "@hcoop.net"
6 val boardEmail = "board" ^ emailSuffix
7
8 val dbstring = "dbname='hcoop_portal3' user='hcoop' host='postgres' port=5433"
9
10 val kerberosSuffix = "@HCOOP.NET"
11
12 val passgenDbstring = "dbname='hcoop_passgen' user='hcoop' host='postgres' port=5433"
13
14 val statsRoot = "/afs/hcoop.net/user/h/hc/hcoop/portal-tools/etc/stats/"
15 val staticFilesRoot = "/afs/hcoop.net/user/h/hc/hcoop/portal-tools/etc/static/"
16
17 val joinBannedEmailDomains = [ "163.com", "yeah.net", "inbox.ru"]
18
19 end