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

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

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