Although I see fax capability in the documentation (using MyFax), I don't see configuration options anywhere. Am I missing something, or is fax functionality not currently implemented?

Thank you for your attention - looking forward to using this!

Comments

mgifford’s picture

We haven't had a client who has needed it recently so we haven't done any testing on it in a while to see if it works.

I expect there will need to be some tweaking done to get the fax working & possibly reviewing http://www.myfax.com's api.

steve.m’s picture

The functions are indeed still there, but they haven't been tested in a long time. You can turn them on quite easily by adding entries like these to the connect_connect() function in connect_actions.php (or by declaring your own hook_connect() function and adding them there):

    'connect_action_myfax_defined' => array(
      'title'     => 'fax (defined target)',
      'desc'      => 'Send a fax (via myfax) to a specified target',
    ),

    'connect_action_myfax_lookup' => array(
      'title'     => 'fax (lookup target)',
      'desc'      => 'Send a fax (via myfax) to a target looked up on the basis of participant info',
    ),

Once they are available, however, you may discover that they are badly broken. It really has been a long time since they've been tested, and they definitely need an overhaul.