[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.2

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" : {
                     23:       "hours" : {
                     24:          "default" : "1"
                     25:       },
                     26:       "rates" : {
                     27:          "Emergency" : "125",
                     28:          "default" : "75",
                     29:          "Normal" : "100"
                     30:       }
                     31:    },
1.2     ! andrew     32:    "customers" : [
        !            33:       {  "id": "jsmithllc",
1.1       andrew     34:          "base_rate" : "100",
                     35:          "per" : "month",
                     36:          "frequency" : "3",
                     37:          "day" : "18",
                     38:          "match" : [
                     39:             {
                     40:                "type" : "requestors",
                     41:                "regex" : "lauren@"
                     42:             }
                     43:          ],
                     44:          "hours" : {
                     45:             "Emergency" : "1",
                     46:             "Normal" : "5"
                     47:          },
                     48:          "address" : {
                     49:             "name" : "Jane Smith",
                     50:             "addr1" : "4567 Corner Cir",
                     51:             "city" : "Anytown",
                     52:             "state" : "America",
                     53:             "zip" : "11111"
                     54:          },
                     55:       },
1.2     ! andrew     56:       {  "id": "jdoeinc",
1.1       andrew     57:          "base_rate" : "300",
                     58:          "day" : "3",
                     59:          "per" : "week",
                     60:          "hours" : {
                     61:             "Normal" : "1"
                     62:          },
                     63:          "match" : [
                     64:             {
                     65:                "type" : "queue",
                     66:                "queue" : "IWS"
                     67:             }
                     68:          ],
                     69:          "address" : {
                     70:             "name" : "John Doe",
                     71:             "addr1" : "123 W Main St",
                     72:             "city" : "Anytown",
                     73:             "state" : "America",
                     74:             "zip" : "11111"
                     75:          },
1.2     ! andrew     76:       },
        !            77:       {  "id": "andrew",
        !            78:          "match" : [
        !            79:             {
        !            80:                "type" : "requestors",
        !            81:                "regex" : "andrew@afresh1.com"
        !            82:             }
        !            83:          ],
1.1       andrew     84:       }
1.2     ! andrew     85:    ]
1.1       andrew     86: }

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