TrySystem(command);
TxFAX(filename,caller,debug);
UnpauseQueueMember(queuename,iface,j);
- UserEvent(eventanme,body);
+ UserEvent(eventname,body);
Verbose(5,message);
VMAuthenticate(mailbox@cont,s);
VoiceMail(mailbox@cont,bg()suj);
// If you are telemarketing, cross me off the list, and don't call again.
// If you did this by mistake, forgive my defenses, and call again.
// Alternate: (priv-liar2)
- // Script: You have chosen to try to deceive my system and withold your CallerID,
+ // Script: You have chosen to try to deceive my system and withhold your CallerID,
// by entering my own phone number as YOUR CallerID. I find this
// offensive because you are being dishonest. I will not do business nor
// waste my time talking to anyone who is less than honest and forthcoming.
//
-// AN EXCERSIZE IN BAD DIALPLAN DESIGN
+// AN EXERCISE IN BAD DIALPLAN DESIGN
// (What better testing ground than on telemarketers?)
//
begin:
Playback(telemark-charity-intro);
// We have contributed generously to many worthy causes in the past, and will
- // continue to do so in the future. But we suspect that such organizatons
+ // continue to do so in the future. But we suspect that such organizations
// have sold our name and phone number to each other until we are now hounded
// day and night by literally hundreds of such organizations.
// Enough is Enough!
// If your organization is a police or fireman or other similar support entity, please dial 3.
// If your organization is a grade school to high school related
// fund raiser or other type of activity, please dial 4.
- // If your organization is a college or univerity or alumnis organization, please dial 5.
+ // If your organization is a college or university or alumnis organization, please dial 5.
// If your organization is animal rights or ecology related organization, please dial 6.
// If your organization is a political action or candidate support related, please dial 7.
// If your organization is a substance abuse related organization or cause, please dial 8.
begin:
Playback(telemark-politx-intro);
Playback(telemark-polit3-choices);
- // if You represent the Independant American Party, dial 1.
+ // if You represent the Independent American Party, dial 1.
// if You represent the Labor Party, dial 2.
// if You represent the Libertarian Party, dial 3.
// if You represent the Light Party, dial 4.
// Do you need verification information? Normally I opt out of such nonsense, if possible.
// If not, use whatever of the following you can:
// My birth month is October.
- // My birthplace is Kigali, in Rwanda, in Afica.
+ // My birthplace is Kigali, in Rwanda, in Africa.
// My eye color is orange.
// All of these are wonderfully false, but I use them regularly for such purposes. Thank you.
Hangup();
TrySystem(command);
TxFAX(filename,caller,debug);
UnpauseQueueMember(queuename,iface,j);
- UserEvent(eventanme,body);
+ UserEvent(eventname,body);
Verbose(5,message);
VMAuthenticate(mailbox@cont,s);
VoiceMail(mailbox@cont,bg()suj);
// If you are telemarketing, cross me off the list, and don't call again.
// If you did this by mistake, forgive my defenses, and call again.
// Alternate: (priv-liar2)
- // Script: You have chosen to try to deceive my system and withold your CallerID,
+ // Script: You have chosen to try to deceive my system and withhold your CallerID,
// by entering my own phone number as YOUR CallerID. I find this
// offensive because you are being dishonest. I will not do business nor
// waste my time talking to anyone who is less than honest and forthcoming.
//
-// AN EXCERSIZE IN BAD DIALPLAN DESIGN
+// AN EXERCISE IN BAD DIALPLAN DESIGN
// (What better testing ground than on telemarketers?)
//
begin:
Playback(telemark-charity-intro);
// We have contributed generously to many worthy causes in the past, and will
- // continue to do so in the future. But we suspect that such organizatons
+ // continue to do so in the future. But we suspect that such organizations
// have sold our name and phone number to each other until we are now hounded
// day and night by literally hundreds of such organizations.
// Enough is Enough!
// If your organization is a police or fireman or other similar support entity, please dial 3.
// If your organization is a grade school to high school related
// fund raiser or other type of activity, please dial 4.
- // If your organization is a college or univerity or alumnis organization, please dial 5.
+ // If your organization is a college or university or alumnis organization, please dial 5.
// If your organization is animal rights or ecology related organization, please dial 6.
// If your organization is a political action or candidate support related, please dial 7.
// If your organization is a substance abuse related organization or cause, please dial 8.
begin:
Playback(telemark-politx-intro);
Playback(telemark-polit3-choices);
- // if You represent the Independant American Party, dial 1.
+ // if You represent the Independent American Party, dial 1.
// if You represent the Labor Party, dial 2.
// if You represent the Libertarian Party, dial 3.
// if You represent the Light Party, dial 4.
// Do you need verification information? Normally I opt out of such nonsense, if possible.
// If not, use whatever of the following you can:
// My birth month is October.
- // My birthplace is Kigali, in Rwanda, in Afica.
+ // My birthplace is Kigali, in Rwanda, in Africa.
// My eye color is orange.
// All of these are wonderfully false, but I use them regularly for such purposes. Thank you.
Hangup();
if (ast_mutex_lock(&save_dialplan_lock)) {
ast_cli(a->fd,
- "Failed to lock dialplan saving (another proccess saving?)\n");
+ "Failed to lock dialplan saving (another process saving?)\n");
return CLI_FAILURE;
}
/* XXX the code here is quite loose, a pathname with .conf in it
break;
default:
- ast_cli(a->fd, "Failed to add ingore pattern '%s' into '%s' context\n",
+ ast_cli(a->fd, "Failed to add ignore pattern '%s' into '%s' context\n",
a->argv[3], a->argv[5]);
break;
}
FLAG_DEAD = (1 << 1), /*!< Transaction is dead */
FLAG_FINAL = (1 << 2), /*!< Transaction has final message sent */
FLAG_ISQUAL = (1 << 3), /*!< Transaction is a qualification */
- FLAG_ENCRYPT = (1 << 4), /*!< Transaction is encrypted wiht ECX/DCX */
+ FLAG_ENCRYPT = (1 << 4), /*!< Transaction is encrypted with ECX/DCX */
FLAG_SENDFULLKEY = (1 << 5), /*!< Send full key on transaction */
FLAG_STOREHIST = (1 << 6), /*!< Record historic performance */
};
}
}
if (current) {
- /* Current key is still valid, just setup rotatation properly */
+ /* Current key is still valid, just setup rotation properly */
ast_copy_string(cursecret, current, sizeof(cursecret));
rotatetime = expired;
} else {
}
/*!
- * \brief Create the global 'channel' table for accesing channel variables
+ * \brief Create the global 'channel' table for accessing channel variables
*
* \param L the lua_State to use
*/
}
/*!
- * \brief [lua_CFunction] Tell pbx_lua to stop maintaning an autoservice on
+ * \brief [lua_CFunction] Tell pbx_lua to stop maintaining an autoservice on
* this channel (for access from lua, don't call directly)
*
* \param L the lua_State to use
lua_newtable(L);
context_order = lua_gettop(L);
- /* iterate through this context an popluate the corrisponding
+ /* iterate through this context an populate the corrisponding
* table in the extensions_order table */
for (lua_pushnil(L); lua_next(L, context); lua_pop(L, 1)) {
int exten = lua_gettop(L) - 1;
}
/*!
- * \brief Register dialplan switches for our pbx_lua contexs.
+ * \brief Register dialplan switches for our pbx_lua contexts.
*
* In the event of an error, an error string will be pushed onto the lua stack.
*
}
/*!
- * \brief Register dialplan hints for our pbx_lua contexs.
+ * \brief Register dialplan hints for our pbx_lua contexts.
*
* In the event of an error, an error string will be pushed onto the lua stack.
*