Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions docs/Asterisk-Community/IRC.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,16 @@ Use <https://libera.chat/> IRC server to connect with Asterisk developers and us

```bash title=" " linenums="1"
#asterisk

```

### Asterisk Developers Room

```bash title=" " linenums="1"
#asterisk-dev

```

### Asterisk ARI/Application Developers Room

```bash title=" " linenums="1"
#asterisk-ari

```
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,19 @@ To avoid the first few milliseconds of a prompt from being cut off you can play

```conf title=" " linenums="1"
exten => 1234,1,Playback(hello-world)

```

You could avoid the first few seconds of the prompt from being cut off by playing the silence/1 file:

```conf title=" " linenums="1"
exten => 1234,1,Playback(silence/1)
exten => 1234,n,Playback(hello-world)

```

Alternatively this could all be done on the same line by separating the filenames with an ampersand (&):

```conf title=" " linenums="1"
exten => 1234,1,Playback(silence/1&hello-world)

```

The **Hangup()** application hangs up the current call. While not strictly necessary due to auto-fallthrough (see the note on Priority numbers above), in general we recommend you add the **Hangup()** application as the last priority in any extension.
Expand All @@ -43,5 +40,4 @@ Now let's put **Answer()**, **Playback()**, and **Hangup()** together to play a
exten => 6000,1,Answer(500)
exten => 6000,n,Playback(hello-world)
exten => 6000,n,Hangup()

```
Loading