User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 29
  6. 30
  7. 31
  8. 32
  9. 33
  10. 34

Posts by ⋅⋆*$Pβ‚³C3β˜†πŸκ’°-β– ^β– κ’±vπŸ‘πŸ΄β€β˜ οΈβ«·α”•πŸŒŸα”•β«Έβš‘5H33Pβ‹†Β°βœ©πŸͺ

  1. SCARAM BARAN THANK YOU MADAM!
  2. OH NO YOU DON"T
  3. Originally posted by vindicktive vinny pondering if thise nice couple have had episodes of domestic violence, and if yes,

    who's the beater and who's the taker.

    whos the bleater
  4. *laughs in dialup*

  5. oh yeah if you think thats cool huh? well check out my fax software, jealous?

  6. imagine if you killed them all
  7. pornhub still takes CRYPTO ONLY BTW , much room in market for SHADOW BANKING and MOVING MONEY also I found KYC software. I don't rememmber KYC requiring you hit SUBMIT maybe I can just look someone up, seee he's cool. okay good to go and write nothing down. Maybe it's illegal , maybe it's not. If you ask me I CHECKED HE'S NOT ON A MONEY LAUNDERING LIST I CAN REFUSE SERVICE TO ANYONE SO FUCK OFF GOVERNMENT
  8. LOL

  9. Originally posted by mashlehash who is it?

    o ohofejw2r3tw
  10. im a sheep actually
  11. can we trade mashlehash for dte lmrao
  12. Originally posted by Speedy Parker Way TLDR

    I read it c:
  13. pauliwog the nigger lover
  14. Originally posted by DontTellEm Well well well looks like a hand full of losers :)

    DTE stocks rising!!! dte a real 111!!! dte can hang!! all the other DHers RAN THE FUCK OUTTA HERE SCRAM!!!!!!! DON'T COME BACK ! WE WEEEDED OUT THE LOESRSS REAL 11111111z only
  15. i miss dte fuys
  16. Originally posted by β €β €β €β €β €β € Mash is a weird one. Looks like a goat.

    BILLY HOAT
  17. TBB Faxing is only supported officially at 9600 baud since there are technical limits related to bandwidth and jitter. However, depending on the quality of each user's LAN and ISP connection, TBB faxing can work at 14400 or more (some users report using this successfully).

    Following is "snickerdo"'s tip that helped him and others with faxing more than one page:

    Put a DSL enhancement on your fax machine. Yes, a plain ol' enhancement used for the same DSL that Bell sells. They can be purchased for about $5, or you can get them for free if you have a Sympatico DSL High Speed account. In other words, place a DSL enhancement on the Line 1 port of the gateway, and split it from there as needed.
    A DSL enhancement is meant to remove the DSL signal from a phone line. However, used in this way with the DVG, it probably removes high frequency noise due to jitter (etc), from the fax line, thus perhaps making it more stable.

    If you have trouble with FAXING, run the Primus VoIP Test. At the end of the test, provide the ticket # to Primus TBB Technical Support who can sometimes help to resolve the issue.

    A Primus comment on Faxing:

    Note that faxing is considered a best effort service over IP. (IP itself is considered best effort). With the nature of the underlying protocols and codecs supported by most major VoIP providers, it's currently very susceptible to packet loss.

    T.30 (which is the PSTN faxing standard) is very sensitive to errors and contains a lot of error correction mechanisms. With RTP using UDP as a transport packetloss is considered a behavior of the protocol and the Internet. Running at a codec like G.711u allows for a full 64KBps channel, but it's blind to any of the error corrections provisioned by T.30. That is to say, IP is blind to those error mechanisms, not either end of the PSTN. This is why longer faxes tend to fail over congested links. (Which can be argued as all links)

    An ITU standard called T.38 allows VoIP carriers to transport this T.30 PSTN signaling transparently across an IP transport while adhering to error corrections provisioned by T.30. Primus is currently in the process of testing this. There is no ETA, but it is in the works.

    welp I didn't send a fax but I have like 3 phone numbers and a fuck ton of COM ports connected to by virtual printers(over 50~!)
  18. https://www.3cx.com/ordering/pricing/
    https://www.3cx.com/
    https://www.dslreports.com/faq/primustbb

    Originally posted by β €β €β €β €β €β € You can't fax yourself, because you're already using the line to fax.

    i'm not "faxxing myself" i'm trying to set up a way so I can receive faxes without using a fax machine

    https://www.dslreports.com/nsearch?q=fax&old=Search&typ=faqanswer&Search=Go

    THIS RIGHT HERE IS EVERYTHING YOU NEED

    https://www.voip-info.org/voip-software/#FaxBroadcasting
    https://www.voip-info.org/open-source-voip-software/
    https://www.voip-info.org/voip-sites/
    https://www.voip-info.org/voip-pbx-and-servers/
    https://github.com/ictinnovations/ictfax

    5. Getting Started
    We believe in leveraging open source in telecommunications, providing a free platform for simple and advanced CTI applications. ICTCore was built by people like you, and we need your help to make ICTCore better! Why not participate in a useful project today? Please check docs folder to learn how to begin.

    Following is an example about sending fax by using ICTCore
    // prepare a program with fax document
    $programData = array('file_name' => '/some/pdf/file.pdf');
    $faxProgram = new Sendfax(null, array('data' => $programData));

    // create a transmission
    $contact_id = 12;
    $account_id = 1;
    $faxTransmission = faxProgram->transmission_create($contact_id, $account_id);

    // schedule transmission
    $faxTransmission->schedule(array('delay' => 3600)); // in seconds

    <

    p>// or dispatch immediately
    $faxTransmission->send();


    Send Fax program

    Now we need to create the send fax program and and make it ready to be sent

    REST API for Send Fax program

    POST http://ictcore.example.com/api/programs/sendfax

    Program Object

    name: string
    document_id: number // document_id of fax document for which this program is being created

    REST API EXAMPLE USING PHP

    <?php
    $ch = curl_init();

    curl_setopt($ch, CURLOPT_URL, "http://ictcore.example.com/api/programs/sendfax");
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    curl_setopt($ch, CURLOPT_HEADER, FALSE);

    curl_setopt($ch, CURLOPT_POST, TRUE);

    curl_setopt($ch, CURLOPT_POSTFIELDS, "[
    {
    \"name\": \"name\",
    \"document_id: 1 (number ) - document_id of fax document for which this program is being created\": \"\"
    }
    ]");

    curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    "Content-Type: application/json"
    ));

    $response = curl_exec($ch);
    curl_close($ch);

    var_dump($response);

    Response

    It will return the program_id of recently created record.

    Step4: Create Send Fax transmission

    REST API for Creating Fax transmission

    POST http://ictcore.example.com/api/transmissions

    Transmission Object

    title: string
    program_id: number
    phone: number
    origin: string
    direction: string

    REST API EXAMPLE USING PHP

    <?php
    $ch = curl_init();

    curl_setopt($ch, CURLOPT_URL, "http://ictcore.example.com/api/transmissions");
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    curl_setopt($ch, CURLOPT_HEADER, FALSE);

    curl_setopt($ch, CURLOPT_POST, TRUE);

    curl_setopt($ch, CURLOPT_POSTFIELDS, "[
    {
    \"title\": \"title\",
    \"phone\": 1234231,
    \"program_id\": 1,
    \"origin\": \"origin\",
    \"direction\": \"direction\"
    }
    ]");

    curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    "Content-Type: application/json"
    ));

    $response = curl_exec($ch);
    curl_close($ch);

    var_dump($response);

    Response

    It will return the transmission_id of recently created record.

    Send Fax Transmission

    Now the transmission is successfully created, now next step is to send that transmission.

    REST API for Send Fax Transmission

    POST http://ictcore.example.com/api/transmissions/transmission_id/send

    Required parameters

    transmission_id : number // ID of the transmission in the form of an integer

    REST API EXAMPLE USING PHP

    <?php
    $ch = curl_init();

    curl_setopt($ch, CURLOPT_URL, "http://ictcore.example.com/api/transmissions/transmission_id/send");
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    curl_setopt($ch, CURLOPT_HEADER, FALSE);

    curl_setopt($ch, CURLOPT_POST, TRUE);

    curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    "Content-Type: application/json"
    ));

    $response = curl_exec($ch);
    curl_close($ch);

    var_dump($response);

    Now the document will be forwarded to the particular contact.



    http://www.onlinefaxguide.com/
  19. Originally posted by β €β €β €β €β €β € https://en.wikipedia.org/wiki/Telnet

    I KNOW WHAT TELNET IS IM TRYING TO ALSO MAKE A BBS AND THAT"S THE LEAST COMPLICATED PART. HOW THE FAX DO I FAX MYSELF THROUGH TELNET???? WHAT NUMBER????


  20. bruh
  1. 1
  2. 2
  3. 3
  4. ...
  5. 29
  6. 30
  7. 31
  8. 32
  9. 33
  10. 34
Jump to Top