[BACK]Return to rt_invoice.conf.sample CVS log [TXT][DIR] Up to [local] / RT / Invoicing

Annotation of RT/Invoicing/rt_invoice.conf.sample, Revision 1.3

1.1       andrew      1: {
                      2:    "rt" : {
                      3:       "user" : "user",
                      4:       "pass" : "password",
                      5:       "server" : "https://rt.example.com",
                      6:       "timeout" : "30"
                      7:    },
                      8:    "from" : {
                      9:       "name" : "Example Company",
                     10:       "phone" : "(800) 555-1212",
                     11:       "state" : "America",
                     12:       "addr2" : "Suite C",
                     13:       "email" : "company@example.com",
                     14:       "city" : "Anytown",
                     15:       "zip" : "11111",
                     16:       "addr1" : "22115 Central Way"
                     17:    },
                     18:    "info" : [
                     19:       "Visit me online at http://example.com",
                     20:       "Create a new ticket rt@example.com"
                     21:    ],
                     22:    "default" : {
1.3     ! andrew     23:       "net" : "30",
1.1       andrew     24:       "hours" : {
                     25:          "default" : "1"
                     26:       },
                     27:       "rates" : {
                     28:          "Emergency" : "125",
                     29:          "default" : "75",
                     30:          "Normal" : "100"
                     31:       }
                     32:    },
1.2       andrew     33:    "customers" : [
                     34:       {  "id": "jsmithllc",
1.1       andrew     35:          "base_rate" : "100",
                     36:          "per" : "month",
                     37:          "frequency" : "3",
                     38:          "day" : "18",
                     39:          "match" : [
                     40:             {
                     41:                "type" : "requestors",
                     42:                "regex" : "lauren@"
                     43:             }
                     44:          ],
                     45:          "hours" : {
                     46:             "Emergency" : "1",
                     47:             "Normal" : "5"
                     48:          },
                     49:          "address" : {
                     50:             "name" : "Jane Smith",
                     51:             "addr1" : "4567 Corner Cir",
                     52:             "city" : "Anytown",
                     53:             "state" : "America",
                     54:             "zip" : "11111"
                     55:          },
                     56:       },
1.2       andrew     57:       {  "id": "jdoeinc",
1.1       andrew     58:          "base_rate" : "300",
                     59:          "day" : "3",
                     60:          "per" : "week",
                     61:          "hours" : {
                     62:             "Normal" : "1"
                     63:          },
                     64:          "match" : [
                     65:             {
                     66:                "type" : "queue",
                     67:                "queue" : "IWS"
                     68:             }
                     69:          ],
                     70:          "address" : {
                     71:             "name" : "John Doe",
                     72:             "addr1" : "123 W Main St",
                     73:             "city" : "Anytown",
                     74:             "state" : "America",
                     75:             "zip" : "11111"
                     76:          },
1.2       andrew     77:       },
                     78:       {  "id": "andrew",
                     79:          "match" : [
                     80:             {
                     81:                "type" : "requestors",
                     82:                "regex" : "andrew@afresh1.com"
                     83:             }
                     84:          ],
1.1       andrew     85:       }
1.2       andrew     86:    ]
1.1       andrew     87: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>