Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Erlang 1.50 KB | None | 0 0
  1. %-*- mode:erlang -*-
  2. [{iris, [{denshi_jisho, [
  3.                          {request_url, "http://jisho.org/words?jap=~s&eng=~s&dict=edict"}
  4.                         ]},
  5.  
  6.          {twitter_api, [
  7.                         {consumer_key, "your-consumer-key"},
  8.                         {consumer_secret, "your-consumer-secret"},
  9.                         {access_token, "your-access-token"},
  10.                         {access_token_secret, "your-access-token-secret"}
  11.                        ]},
  12.  
  13.          {google_search, [
  14.                           {api_key, "your-api-key"},
  15.                           {engine_id, "your-custom-search-engine-id"}
  16.                          ]},
  17.  
  18.          {jids, [{"maribel@anoma.ch",
  19.                   [{resource, "iris"},
  20.                    {status, "the past inside the present"},
  21.                    {sasl_auth, "DIGEST-MD5"},
  22.                    {password, ":3"},
  23.                    {rooms,[{"refuge@conference.anoma.ch",
  24.                             [{nick, "Maribel"},
  25.                              {commands, [exit, shrink, g]},
  26.                              {logging, on},
  27.                              {banlist, []}
  28.                             ]}
  29.                           ]},
  30.                    {commands, [shrink, exit, g]},
  31.                    {plugins, [chat_commands, url_title]}
  32.                   ]}
  33.                 ]}
  34.         ]},
  35. {lager, [{colored, true},
  36.           {handlers, [
  37.                       {lager_console_backend, debug}
  38.                      ]}
  39.          ]}
  40. ].
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement